Skip to content

Commit

Permalink
Merge branch 'main' into enable-risk-engine
Browse files Browse the repository at this point in the history
  • Loading branch information
kibanamachine authored Oct 2, 2023
2 parents 989d215 + 26e61c1 commit 0c3d184
Show file tree
Hide file tree
Showing 209 changed files with 96,104 additions and 3,236 deletions.
92 changes: 49 additions & 43 deletions .buildkite/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .buildkite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@types/minimatch": "^3.0.5",
"@types/mocha": "^10.0.1",
"@types/node": "^15.12.2",
"chai": "^4.3.6",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nock": "^12.0.2",
"ts-node": "^10.7.0",
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/code_coverage/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ steps:
label: 'Pick Test Group Run Order'
agents:
queue: kibana-default
timeout_in_minutes: 10
env:
FTR_CONFIGS_DEPS: ''
LIMIT_CONFIG_TYPE: 'unit,integration'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ steps:
command: .buildkite/scripts/steps/test/pick_test_group_run_order.sh
agents:
queue: kibana-default
timeout_in_minutes: 10
env:
FTR_CONFIGS_SCRIPT: 'TEST_ES_SERVERLESS_IMAGE=$ES_SERVERLESS_IMAGE .buildkite/scripts/steps/test/ftr_configs.sh'
FTR_CONFIG_PATTERNS: '**/test_serverless/**'
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/es_snapshots/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ steps:
label: 'Pick Test Group Run Order'
agents:
queue: kibana-default
timeout_in_minutes: 10
env:
JEST_UNIT_SCRIPT: '.buildkite/scripts/steps/test/jest.sh'
JEST_INTEGRATION_SCRIPT: '.buildkite/scripts/steps/test/jest_integration.sh'
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/on_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ steps:
label: 'Pick Test Group Run Order'
agents:
queue: kibana-default
timeout_in_minutes: 10
env:
JEST_UNIT_SCRIPT: '.buildkite/scripts/steps/test/jest.sh'
JEST_INTEGRATION_SCRIPT: '.buildkite/scripts/steps/test/jest_integration.sh'
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/pull_request/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ steps:
label: 'Pick Test Group Run Order'
agents:
queue: kibana-default
timeout_in_minutes: 10
env:
JEST_UNIT_SCRIPT: '.buildkite/scripts/steps/test/jest.sh'
JEST_INTEGRATION_SCRIPT: '.buildkite/scripts/steps/test/jest_integration.sh'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"@dnd-kit/utilities": "^2.0.0",
"@elastic/apm-rum": "^5.14.0",
"@elastic/apm-rum-react": "^2.0.0",
"@elastic/charts": "59.1.0",
"@elastic/charts": "60.0.0",
"@elastic/datemath": "5.0.3",
"@elastic/elasticsearch": "npm:@elastic/[email protected]",
"@elastic/ems-client": "8.4.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ export const CardsNavigation = ({
defaultMessage: 'Management',
})}
description={i18n.translate('management.landing.withCardNavigation.pageDescription', {
defaultMessage: 'Manage your indices, data views, saved objects, settings, and more.',
defaultMessage:
'Manage data and indices, oversee rules and connectors, organize saved objects and files, and create API keys in a central location.',
})}
/>

Expand Down
35 changes: 17 additions & 18 deletions packages/kbn-management/cards_navigation/src/consts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ export const appDefinitions: Record<AppId, AppDefinition> = {
description: i18n.translate(
'management.landing.withCardNavigation.indexmanagementDescription',
{
defaultMessage: 'Update your Elasticsearch indices individually or in bulk.',
defaultMessage:
'Configure and maintain your Elasticsearch indices for data storage and retrieval.',
}
),
icon: <EuiIcon size="l" type="indexSettings" />,
},
[appIds.TRANSFORM]: {
category: appCategories.DATA,
description: i18n.translate('management.landing.withCardNavigation.transformDescription', {
defaultMessage:
'Transforms pivot indices into summarized, entity-centric indices, or create an indexed view of the latest documents.',
defaultMessage: 'Pivot your data or copy the latest documents into an entity-centric index.',
}),
icon: <EuiIcon size="l" type="indexFlush" />,
},
Expand All @@ -64,47 +64,46 @@ export const appDefinitions: Record<AppId, AppDefinition> = {
description: i18n.translate(
'management.landing.withCardNavigation.ingestPipelinesDescription',
{
defaultMessage:
'Use pipelines to remove or transform fields, extract values from text, and enrich your data before indexing.',
defaultMessage: 'Remove fields, extract values, and perform transformations on your data.',
}
),
icon: <EuiIcon size="l" type="logstashInput" />,
},
[appIds.DATA_VIEWS]: {
category: appCategories.DATA,
description: i18n.translate('management.landing.withCardNavigation.dataViewsDescription', {
defaultMessage:
'Create and manage the data views that help you retrieve your data from Elasticsearch.',
defaultMessage: 'Create and manage the Elasticsearch data you selected for exploration.',
}),
icon: <EuiIcon size="l" type="indexEdit" />,
},
[appIds.ML]: {
category: appCategories.DATA,
description: i18n.translate('management.landing.withCardNavigation.mlDescription', {
defaultMessage:
'View, export, and import machine learning analytics and anomaly detection items.',
'Identify, analyze, and process your data using advanced analysis techniques.',
}),
icon: <EuiIcon size="l" type="indexMapping" />,
},
[appIds.PIPELINES]: {
category: appCategories.DATA,
description: i18n.translate('management.landing.withCardNavigation.ingestDescription', {
defaultMessage: 'Manage Logstash event processing and see the result visually.',
defaultMessage:
'Manage and view the Logstash event processing pipeline from inputs to outputs.',
}),
icon: <EuiIcon size="l" type="logstashQueue" />,
},

[appIds.RULES]: {
category: appCategories.ALERTS,
description: i18n.translate('management.landing.withCardNavigation.rulesDescription', {
defaultMessage: 'Detect conditions using rules.',
defaultMessage: 'Define when to generate alerts and notifications.',
}),
icon: <EuiIcon size="l" type="editorChecklist" />,
},
[appIds.CONNECTORS]: {
category: appCategories.ALERTS,
description: i18n.translate('management.landing.withCardNavigation.connectorsDescription', {
defaultMessage: 'Connect third-party software with your alerting data.',
defaultMessage: 'Configure connections to third party systems for use in cases and rules.',
}),
icon: <EuiIcon size="l" type="desktop" />,
},
Expand All @@ -113,7 +112,8 @@ export const appDefinitions: Record<AppId, AppDefinition> = {
description: i18n.translate(
'management.landing.withCardNavigation.maintenanceWindowsDescription',
{
defaultMessage: 'Suppress rule notifications for scheduled periods of time.',
defaultMessage:
'Suppress rule notifications during scheduled times for maintenance, updates, and other system tasks.',
}
),
icon: <EuiIcon size="l" type="wrench" />,
Expand All @@ -122,37 +122,36 @@ export const appDefinitions: Record<AppId, AppDefinition> = {
[appIds.SAVED_OBJECTS]: {
category: appCategories.CONTENT,
description: i18n.translate('management.landing.withCardNavigation.objectsDescription', {
defaultMessage:
'Manage and share your saved objects. To edit the underlying data of an object, go to its associated application.',
defaultMessage: 'Manage your saved dashboards, maps, data views, and Canvas workpads.',
}),
icon: <EuiIcon size="l" type="save" />,
},
[appIds.FILES_MANAGEMENT]: {
category: appCategories.CONTENT,
description: i18n.translate('management.landing.withCardNavigation.fileManagementDescription', {
defaultMessage: 'Any files created will be listed here.',
defaultMessage: 'Access all files that you uploaded.',
}),
icon: <EuiIcon size="l" type="documents" />,
},
[appIds.REPORTING]: {
category: appCategories.CONTENT,
description: i18n.translate('management.landing.withCardNavigation.reportingDescription', {
defaultMessage: 'Get reports generated in applications.',
defaultMessage: 'Manage generated PDF, PNG and CSV reports.',
}),
icon: <EuiIcon size="l" type="visPie" />,
},
[appIds.TAGS]: {
category: appCategories.CONTENT,
description: i18n.translate('management.landing.withCardNavigation.tagsDescription', {
defaultMessage: 'Use tags to categorize and easily find your objects.',
defaultMessage: 'Organize, search, and filter your saved objects by specific criteria.',
}),
icon: <EuiIcon size="l" type="tag" />,
},

[appIds.API_KEYS]: {
category: appCategories.OTHER,
description: i18n.translate('management.landing.withCardNavigation.apiKeysDescription', {
defaultMessage: 'Allow applications to access Elastic on your behalf.',
defaultMessage: 'Allow programmatic access to your project data and capabilities.',
}),
icon: <EuiIcon size="l" type="lockOpen" />,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ export const searchResponseIncompleteWarningLocalCluster: SearchResponseWarning
],
},
},
openInInspector: () => {},
};
Loading

0 comments on commit 0c3d184

Please sign in to comment.