Skip to content

Commit 955219b

Browse files
authored
Update datasets UI copy to data streams (#75618) (#75671)
1 parent e8d1e9b commit 955219b

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

x-pack/plugins/ingest_manager/dev_docs/definitions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ definitions for one or multiple inputs and each input can contain one or multipl
1313
With the example of the nginx Package policy, it contains two inputs: `logs` and `nginx/metrics`. Logs and metrics are collected
1414
differently. The `logs` input contains two streams, `access` and `error`, the `nginx/metrics` input contains the stubstatus stream.
1515

16-
## Data Stream
16+
## Data stream
1717

18-
Data Streams are a [new concept](https://github.com/elastic/elasticsearch/issues/53100) in Elasticsearch which simplify
18+
Data streams are a [new concept](https://github.com/elastic/elasticsearch/issues/53100) in Elasticsearch which simplify
1919
ingesting data and the setup of Elasticsearch.
2020

2121
## Elastic Agent
@@ -35,7 +35,7 @@ Fleet is the part of the Ingest Manager UI in Kibana that handles the part of en
3535

3636
Ingest Management + Elastic Agent follow a strict new indexing strategy: `{type}-{dataset}-{namespace}`. An example
3737
for this is `logs-nginx.access-default`. More details about it can be found in the Index Strategy below. All data of
38-
the index strategy is sent to Data Streams.
38+
the index strategy is sent to data streams.
3939

4040
## Input
4141

x-pack/plugins/ingest_manager/public/applications/ingest_manager/constants/page_paths.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const PAGE_ROUTING_PATHS = {
5353
fleet_agent_details_events: '/fleet/agents/:agentId',
5454
fleet_agent_details_details: '/fleet/agents/:agentId/details',
5555
fleet_enrollment_tokens: '/fleet/enrollment-tokens',
56-
data_streams: '/datasets',
56+
data_streams: '/data-streams',
5757
};
5858

5959
export const pagePathGetters: {
@@ -80,5 +80,5 @@ export const pagePathGetters: {
8080
fleet_agent_details: ({ agentId, tabId }) =>
8181
`/fleet/agents/${agentId}${tabId ? `/${tabId}` : ''}`,
8282
fleet_enrollment_tokens: () => '/fleet/enrollment-tokens',
83-
data_streams: () => '/datasets',
83+
data_streams: () => '/data-streams',
8484
};

x-pack/plugins/ingest_manager/public/applications/ingest_manager/hooks/use_breadcrumbs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ const breadcrumbGetters: {
207207
BASE_BREADCRUMB,
208208
{
209209
text: i18n.translate('xpack.ingestManager.breadcrumbs.datastreamsPageTitle', {
210-
defaultMessage: 'Datasets',
210+
defaultMessage: 'Data streams',
211211
}),
212212
},
213213
],

x-pack/plugins/ingest_manager/public/applications/ingest_manager/layouts/default.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export const DefaultLayout: React.FunctionComponent<Props> = ({
9696
<EuiTab isSelected={section === 'data_stream'} href={getHref('data_streams')}>
9797
<FormattedMessage
9898
id="xpack.ingestManager.appNavigation.dataStreamsLinkText"
99-
defaultMessage="Datasets"
99+
defaultMessage="Data streams"
100100
/>
101101
</EuiTab>
102102
</EuiTabs>

x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/data_stream/list_page/index.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const DataStreamListPageLayout: React.FunctionComponent = ({ children }) => (
3232
<h1>
3333
<FormattedMessage
3434
id="xpack.ingestManager.dataStreamList.pageTitle"
35-
defaultMessage="Datasets"
35+
defaultMessage="Data streams"
3636
/>
3737
</h1>
3838
</EuiText>
@@ -173,7 +173,7 @@ export const DataStreamListPage: React.FunctionComponent<{}> = () => {
173173
<h2>
174174
<FormattedMessage
175175
id="xpack.ingestManager.dataStreamList.noDataStreamsPrompt"
176-
defaultMessage="No datasets"
176+
defaultMessage="No data streams"
177177
/>
178178
</h2>
179179
}
@@ -216,14 +216,14 @@ export const DataStreamListPage: React.FunctionComponent<{}> = () => {
216216
isLoading ? (
217217
<FormattedMessage
218218
id="xpack.ingestManager.dataStreamList.loadingDataStreamsMessage"
219-
defaultMessage="Loading datasets…"
219+
defaultMessage="Loading data streams…"
220220
/>
221221
) : dataStreamsData && !dataStreamsData.data_streams.length ? (
222222
emptyPrompt
223223
) : (
224224
<FormattedMessage
225225
id="xpack.ingestManager.dataStreamList.noFilteredDataStreamsMessage"
226-
defaultMessage="No matching datasets found"
226+
defaultMessage="No matching data streams found"
227227
/>
228228
)
229229
}
@@ -253,7 +253,7 @@ export const DataStreamListPage: React.FunctionComponent<{}> = () => {
253253
placeholder: i18n.translate(
254254
'xpack.ingestManager.dataStreamList.searchPlaceholderTitle',
255255
{
256-
defaultMessage: 'Filter datasets',
256+
defaultMessage: 'Filter data streams',
257257
}
258258
),
259259
incremental: true,

x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/fleet/components/agent_enrollment_flyout/standalone_instructions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export const StandaloneInstructions: React.FunctionComponent<Props> = ({ agentPo
157157
<EuiText>
158158
<FormattedMessage
159159
id="xpack.ingestManager.agentEnrollment.stepCheckForDataDescription"
160-
defaultMessage="The agent should begin sending data. Go to Datasets to view your data."
160+
defaultMessage="The agent should begin sending data. Go to data streams to view your data."
161161
/>
162162
</EuiText>
163163
</>

x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/overview/components/datastream_section.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ export const OverviewDatastreamSection: React.FC = () => {
4747
<EuiFlexItem component="section">
4848
<OverviewPanel
4949
title={i18n.translate('xpack.ingestManager.overviewPageDataStreamsPanelTitle', {
50-
defaultMessage: 'Datasets',
50+
defaultMessage: 'Data streams',
5151
})}
5252
tooltip={i18n.translate('xpack.ingestManager.overviewPageDataStreamsPanelTooltip', {
53-
defaultMessage: 'Data that your agents collect are organized into various datasets.',
53+
defaultMessage: 'Data that your agents collect are organized into various data streams.',
5454
})}
5555
linkTo={getHref('data_streams')}
5656
linkToText={i18n.translate('xpack.ingestManager.overviewPageDataStreamsPanelAction', {
57-
defaultMessage: 'View datasets',
57+
defaultMessage: 'View data streams',
5858
})}
5959
>
6060
<OverviewStats>
@@ -65,7 +65,7 @@ export const OverviewDatastreamSection: React.FC = () => {
6565
<EuiDescriptionListTitle>
6666
<FormattedMessage
6767
id="xpack.ingestManager.overviewDatastreamTotalTitle"
68-
defaultMessage="Datasets"
68+
defaultMessage="Data streams"
6969
/>
7070
</EuiDescriptionListTitle>
7171
<EuiDescriptionListDescription>

x-pack/plugins/ingest_manager/public/applications/ingest_manager/types/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export {
4343
CreatePackagePolicyResponse,
4444
UpdatePackagePolicyRequest,
4545
UpdatePackagePolicyResponse,
46-
// API schemas - Data Streams
46+
// API schemas - Data streams
4747
GetDataStreamsResponse,
4848
// API schemas - Agents
4949
GetAgentsResponse,

0 commit comments

Comments
 (0)