Skip to content

Commit

Permalink
Merge branch 'main' into feat/obs-onboarding-flow
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 authored Mar 25, 2024
2 parents 2de5d03 + 4725fc4 commit a3c9ed6
Show file tree
Hide file tree
Showing 282 changed files with 7,365 additions and 2,094 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ x-pack/plugins/actions @elastic/response-ops
x-pack/test/alerting_api_integration/common/plugins/actions_simulators @elastic/response-ops
packages/kbn-actions-types @elastic/response-ops
src/plugins/advanced_settings @elastic/appex-sharedux @elastic/kibana-management
src/plugins/ai_assistant_management/observability @elastic/obs-knowledge-team
src/plugins/ai_assistant_management/selection @elastic/obs-knowledge-team
x-pack/packages/ml/aiops_components @elastic/ml-ui
x-pack/plugins/aiops @elastic/ml-ui
Expand Down Expand Up @@ -583,6 +582,7 @@ src/plugins/no_data_page @elastic/appex-sharedux
x-pack/plugins/notifications @elastic/appex-sharedux
packages/kbn-object-versioning @elastic/appex-sharedux
x-pack/plugins/observability_solution/observability_ai_assistant_app @elastic/obs-knowledge-team
x-pack/plugins/observability_solution/observability_ai_assistant_management @elastic/obs-knowledge-team
x-pack/plugins/observability_solution/observability_ai_assistant @elastic/obs-knowledge-team
x-pack/packages/observability/alert_details @elastic/obs-ux-management-team
x-pack/packages/observability/alerting_test_data @elastic/obs-ux-management-team
Expand Down
3 changes: 1 addition & 2 deletions .github/paths-labeller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
- 'Team:obs-ux-management':
- 'x-pack/plugins/observability_solution/observability/**/*.*'
- 'Team:obs-knowledge':
- 'src/plugins/ai_assistant_management/observability/**/*.*'
- 'x-pack/plugins/observability_solution/observability_ai_assistant/**/*.*'
- 'x-pack/plugins/observability_solution/observability_ai_assistant_app/**/*.*'
- 'x-pack/plugins/observability_solution/observability_ai_assistant_*/**/*.*'
- 'x-pack/test/observability_ai_assistant_api_integration/**/*.*'
- 'x-pack/test/observability_ai_assistant_functional/**/*.*'
6 changes: 1 addition & 5 deletions .i18nrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"paths": {
"advancedSettings": "src/plugins/advanced_settings",
"aiAssistantManagementSelection": "src/plugins/ai_assistant_management/selection",
"aiAssistantManagementObservability": "src/plugins/ai_assistant_management/observability",
"alerts": "packages/kbn-alerts/src",
"alertsUIShared": "packages/kbn-alerts-ui-shared/src",
"alertingTypes": "packages/kbn-alerting-types",
Expand Down Expand Up @@ -89,10 +88,7 @@
"packages/kbn-management"
],
"monaco": "packages/kbn-monaco/src",
"navigation": [
"src/plugins/navigation",
"packages/solution-nav"
],
"navigation": ["src/plugins/navigation", "packages/solution-nav"],
"links": "src/plugins/links",
"newsfeed": "src/plugins/newsfeed",
"presentationUtil": "src/plugins/presentation_util",
Expand Down
4 changes: 2 additions & 2 deletions dev_docs/lens/config_api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const config: LensConfig = {
value: 'sum'
}
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder(config, {
timeRange: { from: 'now-30d', to: 'now', type: 'relative' },
embeddable: true,
Expand All @@ -41,8 +41,8 @@ The `LensConfigBuilder` class is the central interface of the API, facilitating

The constructor requires two parameters:

- `formulaAPI`: An instance of `FormulaPublicApi`, allowing the builder to perform formula calculations necessary for certain visualizations.
- `dataViewsAPI`: An instance of `DataViewsPublicPluginStart`, enabling the builder to access and manage data views within Kibana.
- `formulaAPI`: An instance of `FormulaPublicApi`, allowing the builder to perform formula calculations necessary for certain visualizations. You can omit this if you want to create an ES|QL visualization.

#### build Method

Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/examples.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ These configurations illustrate the API's capability to define various visualiza
Any of the above LensConfigs can be converted to actual lens configuration which can be passed to lens embeddable like this:

```
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder(config, {
timeRange: { from: 'now-30d', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/gauge.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const gaugeConfig: LensConfig = {
queryMaxValue: 'max',
shape: 'arc',
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder.build(gaugeConfig, {
timeRange: { from: 'now-1h', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/heatmap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const heatmapConfig: LensConfig = {
position: 'right',
},
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder.build(heatmapConfig, {
timeRange: { from: 'now-1M', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/metric.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const config: LensConfig = {
value: 'totalSales',
label: 'Total Sales Value',
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder(config, {
timeRange: { from: 'now-30d', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/mosaic.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const mosaicConfig: LensConfig = {
breakdown: 'geo.src',
xAxis: 'geo.dest',
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder.build(mosaicConfig, {
timeRange: { from: 'now-1y', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/pie.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const pieConfig: LensConfig = {
position: 'right',
},
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder.build(pieConfig, {
timeRange: { from: 'now-1y', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/regionmap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const regionMapConfig: LensConfig = {
breakdown: 'geo.dest',
value: 'bytes',
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder.build(regionMapConfig, {
timeRange: { from: 'now-1y', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const tableConfig: LensConfig = {
],
value: 'bytes',
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder.build(tableConfig, {
timeRange: { from: 'now-1y', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/tagcloud.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const tagCloudConfig: LensConfig = {
breakdown: 'geo.dest',
value: 'bytes',
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder.build(tagCloudConfig, {
timeRange: { from: 'now-1M', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/treemap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const treemapConfig: LensConfig = {
],
value: 'bytes',
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder.build(treemapConfig, {
timeRange: { from: 'now-1y', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
2 changes: 1 addition & 1 deletion dev_docs/lens/xy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const xyConfig: LensConfig = {
showYAxisTitle: true,
},
};
const configBuilder = new LensConfigBuilder(lensFormulaAPI, dataViewsAPI);
const configBuilder = new LensConfigBuilder(dataViewsAPI, lensFormulaAPI);
const lensConfig = configBuilder.build(xyConfig, {
timeRange: { from: 'now-1y', to: 'now', type: 'relative' },
embeddable: true,
Expand Down
8 changes: 4 additions & 4 deletions docs/developer/plugin-list.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ allowing users to configure their advanced settings, also known
as uiSettings within the code.
|{kib-repo}blob/{branch}/src/plugins/ai_assistant_management/observability/README.md[aiAssistantManagementObservability]
|The aiAssistantManagementObservability plugin manages the Ai Assistant for Observability management section.
|{kib-repo}blob/{branch}/src/plugins/ai_assistant_management/selection/README.md[aiAssistantManagementSelection]
|The aiAssistantManagementSelection plugin manages the Ai Assistant management section.
Expand Down Expand Up @@ -696,6 +692,10 @@ Elastic.
|This app registers defaults functions. It exists as a separate plugin to avoid cyclical dependencies.
|{kib-repo}blob/{branch}/x-pack/plugins/observability_solution/observability_ai_assistant_management/README.md[observabilityAiAssistantManagement]
|The observabilityAiAssistantManagement plugin manages the Ai Assistant for Observability management section.
|{kib-repo}blob/{branch}/x-pack/plugins/observability_solution/observability_logs_explorer/README.md[observabilityLogsExplorer]
|This plugin provides an app based on the LogsExplorer component from the logs_explorer plugin, but adds observability-specific affordances.
Expand Down
2 changes: 1 addition & 1 deletion fleet_packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
},
{
"name": "security_detection_engine",
"version": "8.13.1"
"version": "8.13.2"
}
]
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@
"@kbn/actions-simulators-plugin": "link:x-pack/test/alerting_api_integration/common/plugins/actions_simulators",
"@kbn/actions-types": "link:packages/kbn-actions-types",
"@kbn/advanced-settings-plugin": "link:src/plugins/advanced_settings",
"@kbn/ai-assistant-management-observability-plugin": "link:src/plugins/ai_assistant_management/observability",
"@kbn/ai-assistant-management-plugin": "link:src/plugins/ai_assistant_management/selection",
"@kbn/aiops-components": "link:x-pack/packages/ml/aiops_components",
"@kbn/aiops-plugin": "link:x-pack/plugins/aiops",
Expand Down Expand Up @@ -602,6 +601,7 @@
"@kbn/notifications-plugin": "link:x-pack/plugins/notifications",
"@kbn/object-versioning": "link:packages/kbn-object-versioning",
"@kbn/observability-ai-assistant-app-plugin": "link:x-pack/plugins/observability_solution/observability_ai_assistant_app",
"@kbn/observability-ai-assistant-management-plugin": "link:x-pack/plugins/observability_solution/observability_ai_assistant_management",
"@kbn/observability-ai-assistant-plugin": "link:x-pack/plugins/observability_solution/observability_ai_assistant",
"@kbn/observability-alert-details": "link:x-pack/packages/observability/alert_details",
"@kbn/observability-alerting-test-data": "link:x-pack/packages/observability/alerting_test_data",
Expand Down Expand Up @@ -1102,7 +1102,6 @@
"redux": "^4.2.1",
"redux-actions": "^2.6.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.4.2",
"redux-thunks": "^1.0.0",
Expand Down Expand Up @@ -1487,7 +1486,6 @@
"@types/react-virtualized": "^9.21.22",
"@types/react-window": "^1.8.5",
"@types/redux-actions": "^2.6.1",
"@types/redux-logger": "^3.0.8",
"@types/resolve": "^1.20.1",
"@types/seedrandom": ">=2.0.0 <4.0.0",
"@types/selenium-webdriver": "^4.1.21",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export interface SavedObjectsClientContract {
* @param {object} attributes - the attributes to update
* @param {object} options {@link SavedObjectsUpdateOptions}
* @prop {integer} options.version - ensures version matches that of persisted object
* @returns the udpated simple saved object
* @returns the updated simple saved object
* @deprecated See https://github.com/elastic/kibana/issues/149098
*/
update<T = unknown>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Side Public License, v 1.
*/

export { DEFAULT_INDEX_TYPES_MAP } from './src/constants';
export { DEFAULT_INDEX_TYPES_MAP, HASH_TO_VERSION_MAP } from './src/constants';
export { LEGACY_URL_ALIAS_TYPE, type LegacyUrlAlias } from './src/legacy_alias';
export {
getProperty,
Expand Down Expand Up @@ -65,6 +65,7 @@ export {
getCurrentVirtualVersion,
getLatestMigrationVersion,
getVirtualVersionMap,
getLatestMappingsVirtualVersionMap,
type ModelVersionMap,
type VirtualVersionMap,
compareVirtualVersions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,126 @@ export const DEFAULT_INDEX_TYPES_MAP: IndexTypesMap = {
'workplace_search_telemetry',
],
};

/**
* In order to be FIPS compliant, the migration logic has switched
* from using hashes (stored in _meta.migrationMappingPropertyHashes)
* to using model versions (stored in _meta.mappingVersions).
*
* This map holds a breakdown of md5 hashes to model versions.
* This allows keeping track of changes in mappings for the different SO types:
* When upgrading from a Kibana version prior to the introduction of model versions for V2,
* the V2 logic will map stored hashes to their corresponding model versions.
* These model versions will then be compared against the ones defined in the typeRegistry,
* in order to determine which types' mappings have changed.
*/
export const HASH_TO_VERSION_MAP = {
'action_task_params|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'action|0be88ebcc8560a075b6898236a202eb1': '10.0.0',
'alert|96a5a144778243a9f4fece0e71c2197f': '10.0.0',
'api_key_pending_invalidation|16f515278a295f6245149ad7c5ddedb7': '10.0.0',
'apm-custom-dashboards|561810b957ac3c09fcfc08f32f168e97': '10.0.0',
'apm-indices|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'apm-server-schema|b1d71908f324c17bf744ac72af5038fb': '10.0.0',
'apm-service-group|2af509c6506f29a858e5a0950577d9fa': '10.0.0',
'apm-telemetry|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'app_search_telemetry|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'application_usage_daily|43b8830d5d0df85a6823d290885fc9fd': '10.0.0',
'application_usage_totals|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'canvas-element|7390014e1091044523666d97247392fc': '10.0.0',
'canvas-workpad-template|ae2673f678281e2c055d764b153e9715': '10.0.0',
'canvas-workpad|b0a1706d356228dbdcb4a17e6b9eb231': '10.0.0',
'cases-comments|93535d41ca0279a4a2e5d08acd3f28e3': '10.0.0',
'cases-configure|c124bd0be4c139d0f0f91fb9eeca8e37': '10.0.0',
'cases-connector-mappings|a98c33813f364f0b068e8c592ac6ef6d': '10.0.0',
'cases-telemetry|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'cases-user-actions|07a6651cf37853dd5d64bfb2c796e102': '10.0.0',
'cases|8f7dc53b17c272ea19f831537daa082d': '10.1.0',
'cloud-security-posture-settings|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'config-global|c63748b75f39d0c54de12d12c1ccbc20': '10.0.0',
'config|c63748b75f39d0c54de12d12c1ccbc20': '10.0.0',
'connector_token|740b3fd18387d4097dca8d177e6a35c6': '10.0.0',
'core-usage-stats|3d1b76c39bfb2cc8296b024d73854724': '7.14.1',
'csp-rule-template|6ee70dc06c0ca3ddffc18222f202ab25': '10.0.0',
'dashboard|b8aa800aa5e0d975c5e8dc57f03d41f8': '10.2.0',
'endpoint:user-artifact-manifest|7502b5c5bc923abe8aa5ccfd636e8c3d': '10.0.0',
'enterprise_search_telemetry|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'epm-packages-assets|44621b2f6052ef966da47b7c3a00f33b': '10.0.0',
'epm-packages|c1e2020399dbebba2448096ca007c668': '10.1.0',
'event_loop_delays_daily|5df7e292ddd5028e07c1482e130e6654': '10.0.0',
'event-annotation-group|df07b1a361c32daf4e6842c1d5521dbe': '10.0.0',
'exception-list-agnostic|8a1defe5981db16792cb9a772e84bb9a': '10.0.0',
'exception-list|8a1defe5981db16792cb9a772e84bb9a': '10.0.0',
'file-upload-usage-collection-telemetry|a34fbb8e3263d105044869264860c697': '10.0.0',
'file|8e9dd7f8a22efdb8fb1c15ed38fde9f6': '10.0.0',
'fileShare|aa8f7ac2ddf8ab1a91bd34e347046caa': '10.0.0',
'fleet-fleet-server-host|c28ce72481d1696a9aac8b2cdebcecfa': '10.1.0',
'fleet-message-signing-keys|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'fleet-preconfiguration-deletion-record|4c36f199189a367e43541f236141204c': '10.0.0',
'fleet-proxy|05b7a22977de25ce67a77e44dd8e6c33': '10.0.0',
'fleet-uninstall-tokens|cdb2b655f6b468ecb57d132972425f2e': '10.0.0',
'graph-workspace|27a94b2edcb0610c6aea54a7c56d7752': '10.0.0',
'guided-onboarding-guide-state|a3db59c45a3fd2730816d4f53c35c7d9': '10.0.0',
'guided-onboarding-plugin-state|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'index-pattern|83c02d842fe2a94d14dfa13f7dcd6e87': '10.0.0',
'infra-custom-dashboards|6eed22cbe14594bad8c076fa864930de': '10.0.0',
'infrastructure-monitoring-log-view|c50526fc6040c5355ed027d34d05b35c': '10.0.0',
'infrastructure-ui-source|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'ingest_manager_settings|b91ffb075799c78ffd7dbd51a279c8c9': '10.1.0',
'ingest-agent-policies|20768dc7ce5eced3eb309e50d8a6cf76': '10.0.0',
'ingest-download-sources|0b0f6828e59805bd07a650d80817c342': '10.0.0',
'ingest-outputs|b1237f7fdc0967709e75d65d208ace05': '10.6.0',
'ingest-package-policies|a1a074bad36e68d54f98d2158d60f879': '10.0.0',
'inventory-view|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'kql-telemetry|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'legacy-url-alias|0750774cf16475f88f2361e99cc5c8f0': '8.2.0',
'lens-ui-telemetry|509bfa5978586998e05f9e303c07a327': '10.0.0',
'lens|b0da10d5ab9ebd81d61700737ddc76c9': '10.0.0',
'links|3378bb9b651572865d9f61f5b448e415': '10.0.0',
'maintenance-window|a58ac2ef53ff5103710093e669dcc1d8': '10.0.0',
'map|9134b47593116d7953f6adba096fc463': '10.0.0',
'metrics-data-source|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'metrics-explorer-view|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'ml-job|3bb64c31915acf93fc724af137a0891b': '10.0.0',
'ml-module|f6c6b7b7ebdca4154246923f24d6340d': '10.0.0',
'ml-trained-model|d2f03c1a5dd038fa58af14a56944312b': '10.0.0',
'monitoring-telemetry|2669d5ec15e82391cf58df4294ee9c68': '10.0.0',
'observability-onboarding-state|a4e5c9d018037114140bdb1647c2d568': '10.0.0',
'osquery-manager-usage-metric|4dc4f647d27247c002f56f22742175fe': '10.0.0',
'osquery-pack-asset|fe0dfa13c4c24ac37ce1aec04c560a81': '10.1.0',
'osquery-pack|6bc20973adab06f00156cbc4578a19ac': '10.1.0',
'osquery-saved-query|a05ec7031231a4b71bfb4493a07b2dc5': '10.1.0',
'policy-settings-protection-updates-note|37d4035a1dc3c5e58f1b519f99093f21': '10.0.0',
'query|aa811b49f48906074f59110bfa83984c': '10.2.0',
'risk-engine-configuration|431232781a82926aad5b1fd849715c0f': '10.1.0',
'rules-settings|001f60645e96c71520214b57f3ea7590': '10.0.0',
'sample-data-telemetry|7d3cfeb915303c9641c59681967ffeb4': '10.0.0',
'search-session|fea3612a90b81672991617646f229a61': '10.0.0',
'search-telemetry|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'search|df07b1a361c32daf4e6842c1d5521dbe': '10.0.0',
'security-rule|9d9d11b97e3aaa87fbaefbace2b5c25f': '10.0.0',
'security-solution-signals-migration|4060b5a63dddfd54d2cd56450882cc0e': '10.0.0',
'siem-detection-engine-rule-actions|f5c218f837bac10ab2c3980555176cf9': '10.0.0',
'siem-ui-timeline-note|28393dfdeb4e4413393eb5f7ec8c5436': '10.0.0',
'siem-ui-timeline-pinned-event|293fce142548281599060e07ad2c9ddb': '10.0.0',
'siem-ui-timeline|f6739fd4b17646a6c86321a746c247ef': '10.1.0',
'slo|dc7f35c0cf07d71bb36f154996fe10c6': '10.1.0',
'space|c3aec2a5d4afcb75554fed96411170e1': '10.0.0',
'spaces-usage-stats|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'synthetics-monitor|50b48ccda9f2f7d73d31fd50c41bf305': '10.0.0',
'synthetics-param|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'synthetics-privates-locations|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'tag|83d55da58f6530f7055415717ec06474': '10.0.0',
'task|b4a368fd68cd32ef6990877634639db6': '10.0.0',
'telemetry|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'threshold-explorer-view|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'ui-metric|0d409297dc5ebe1e3a1da691c6ee32e3': '10.0.0',
'upgrade-assistant-ml-upgrade-operation|3caf305ad2da94d80d49453b0970156d': '10.0.0',
'upgrade-assistant-reindex-operation|6d1e2aca91767634e1829c30f20f6b16': '10.0.0',
'uptime-dynamic-settings|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
'uptime-synthetics-api-key|c3178f0fde61e18d3530ba9a70bc278a': '10.0.0',
'url|a37dbae7645ad5811045f4dd3dc1c0a8': '10.0.0',
'usage-counters|8cc260bdceffec4ffc3ad165c97dc1b4': '10.0.0',
'visualization|4891c012863513388881fc109fec4809': '10.0.0',
'workplace_search_telemetry|3d1b76c39bfb2cc8296b024d73854724': '10.0.0',
};
Loading

0 comments on commit a3c9ed6

Please sign in to comment.