diff --git a/packages/kbn-telemetry-tools/src/tools/__fixture__/all_extracted_collectors.ts b/packages/kbn-telemetry-tools/src/tools/__fixture__/all_extracted_collectors.ts index 28cfd3560874c..37bdd327f945b 100644 --- a/packages/kbn-telemetry-tools/src/tools/__fixture__/all_extracted_collectors.ts +++ b/packages/kbn-telemetry-tools/src/tools/__fixture__/all_extracted_collectors.ts @@ -13,6 +13,7 @@ import { parsedIndexedInterfaceWithNoMatchingSchema } from './parsed_indexed_int import { parsedNestedCollector } from './parsed_nested_collector'; import { parsedSchemaDefinedWithSpreadsCollector } from './parsed_schema_defined_with_spreads_collector'; import { parsedWorkingCollector } from './parsed_working_collector'; +import { parsedCollectorWithDescription } from './parsed_working_collector_with_description'; import { ParsedUsageCollection } from '../ts_parser'; export const allExtractedCollectors: ParsedUsageCollection[] = [ @@ -22,5 +23,6 @@ export const allExtractedCollectors: ParsedUsageCollection[] = [ parsedIndexedInterfaceWithNoMatchingSchema, parsedNestedCollector, parsedSchemaDefinedWithSpreadsCollector, + parsedCollectorWithDescription, parsedWorkingCollector, ]; diff --git a/packages/kbn-telemetry-tools/src/tools/__fixture__/mock_schema_with_descriptions.json b/packages/kbn-telemetry-tools/src/tools/__fixture__/mock_schema_with_descriptions.json new file mode 100644 index 0000000000000..77321327b3894 --- /dev/null +++ b/packages/kbn-telemetry-tools/src/tools/__fixture__/mock_schema_with_descriptions.json @@ -0,0 +1,57 @@ +{ + "properties": { + "my_working_collector_with_description": { + "properties": { + "flat": { + "type": "keyword", + "_meta": { + "description": "A flat keyword string" + } + }, + "my_index_signature_prop": { + "properties": { + "avg": { + "type": "float" + }, + "count": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "my_str": { + "type": "text" + }, + "my_objects": { + "properties": { + "total": { + "type": "long" + }, + "type": { + "type": "boolean" + } + } + }, + "my_array": { + "type": "array", + "items": { + "properties": { + "total": { + "type": "long" + }, + "type": { + "type": "boolean" + } + } + } + }, + "my_str_array": { "type": "array", "items": { "type": "keyword" } } + } + } + } +} diff --git a/packages/kbn-telemetry-tools/src/tools/__fixture__/parsed_working_collector_with_description.ts b/packages/kbn-telemetry-tools/src/tools/__fixture__/parsed_working_collector_with_description.ts new file mode 100644 index 0000000000000..a2f9379eec7ac --- /dev/null +++ b/packages/kbn-telemetry-tools/src/tools/__fixture__/parsed_working_collector_with_description.ts @@ -0,0 +1,109 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { SyntaxKind } from 'typescript'; +import { ParsedUsageCollection } from '../ts_parser'; + +export const parsedCollectorWithDescription: ParsedUsageCollection = [ + 'src/fixtures/telemetry_collectors/working_collector_with_description.ts', + { + collectorName: 'my_working_collector_with_description', + schema: { + value: { + flat: { + type: 'keyword', + _meta: { + description: 'A flat keyword string', + }, + }, + my_str: { + type: 'text', + }, + my_index_signature_prop: { + avg: { + type: 'float', + }, + count: { + type: 'long', + }, + max: { + type: 'long', + }, + min: { + type: 'long', + }, + }, + my_objects: { + total: { + type: 'long', + }, + type: { + type: 'boolean', + }, + }, + my_array: { + type: 'array', + items: { + total: { + type: 'long', + }, + type: { type: 'boolean' }, + }, + }, + my_str_array: { type: 'array', items: { type: 'keyword' } }, + }, + }, + fetch: { + typeName: 'Usage', + typeDescriptor: { + flat: { + kind: SyntaxKind.StringKeyword, + type: 'StringKeyword', + }, + my_str: { + kind: SyntaxKind.StringKeyword, + type: 'StringKeyword', + }, + my_index_signature_prop: { + '@@INDEX@@': { + kind: SyntaxKind.NumberKeyword, + type: 'NumberKeyword', + }, + }, + my_objects: { + total: { + kind: SyntaxKind.NumberKeyword, + type: 'NumberKeyword', + }, + type: { + kind: SyntaxKind.BooleanKeyword, + type: 'BooleanKeyword', + }, + }, + my_array: { + items: { + total: { + kind: SyntaxKind.NumberKeyword, + type: 'NumberKeyword', + }, + type: { + kind: SyntaxKind.BooleanKeyword, + type: 'BooleanKeyword', + }, + }, + }, + my_str_array: { + items: { + kind: SyntaxKind.StringKeyword, + type: 'StringKeyword', + }, + }, + }, + }, + }, +]; diff --git a/packages/kbn-telemetry-tools/src/tools/extract_collectors.test.ts b/packages/kbn-telemetry-tools/src/tools/extract_collectors.test.ts index 378518a13c7ac..5106ac7855fc6 100644 --- a/packages/kbn-telemetry-tools/src/tools/extract_collectors.test.ts +++ b/packages/kbn-telemetry-tools/src/tools/extract_collectors.test.ts @@ -24,7 +24,7 @@ describe('extractCollectors', () => { const programPaths = await getProgramPaths(configs[0]); const results = [...extractCollectors(programPaths, tsConfig)]; - expect(results).toHaveLength(8); + expect(results).toHaveLength(9); expect(results).toStrictEqual(allExtractedCollectors); }); }); diff --git a/packages/kbn-telemetry-tools/src/tools/manage_schema.test.ts b/packages/kbn-telemetry-tools/src/tools/manage_schema.test.ts index b39e243d78772..80e58c49928b6 100644 --- a/packages/kbn-telemetry-tools/src/tools/manage_schema.test.ts +++ b/packages/kbn-telemetry-tools/src/tools/manage_schema.test.ts @@ -8,6 +8,7 @@ import { generateMapping } from './manage_schema'; import { parsedWorkingCollector } from './__fixture__/parsed_working_collector'; +import { parsedCollectorWithDescription } from './__fixture__/parsed_working_collector_with_description'; import * as path from 'path'; import { readFile } from 'fs'; import { promisify } from 'util'; @@ -25,4 +26,9 @@ describe('generateMapping', () => { const result = generateMapping([parsedWorkingCollector]); expect(result).toEqual(mockSchema); }); + it('generates a mapping file that includes _meta.description fields', async () => { + const mockSchema = await parseJsonFile('mock_schema_with_descriptions.json'); + const result = generateMapping([parsedCollectorWithDescription]); + expect(result).toEqual(mockSchema); + }); }); diff --git a/src/fixtures/telemetry_collectors/working_collector_with_description.ts b/src/fixtures/telemetry_collectors/working_collector_with_description.ts new file mode 100644 index 0000000000000..433993df06886 --- /dev/null +++ b/src/fixtures/telemetry_collectors/working_collector_with_description.ts @@ -0,0 +1,102 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { CollectorSet } from '../../plugins/usage_collection/server/collector'; +import { loggerMock } from '../../core/server/logging/logger.mock'; + +const { makeUsageCollector } = new CollectorSet({ + logger: loggerMock.create(), + maximumWaitTimeForAllCollectorsInS: 0, +}); + +interface MyObject { + total: number; + type: boolean; +} + +interface Usage { + flat?: string; + my_str?: string; + my_objects: MyObject; + my_array?: MyObject[]; + my_str_array?: string[]; + my_index_signature_prop?: { + [key: string]: number; + }; +} + +const SOME_NUMBER: number = 123; + +export const myCollector = makeUsageCollector({ + type: 'my_working_collector_with_description', + isReady: () => true, + fetch() { + const testString = '123'; + // query ES and get some data + + // summarize the data into a model + // return the modeled object that includes whatever you want to track + try { + return { + flat: 'hello', + my_str: testString, + my_objects: { + total: SOME_NUMBER, + type: true, + }, + my_array: [ + { + total: SOME_NUMBER, + type: true, + }, + ], + my_str_array: ['hello', 'world'], + }; + } catch (err) { + return { + my_objects: { + total: 0, + type: true, + }, + }; + } + }, + schema: { + flat: { + type: 'keyword', + _meta: { + description: 'A flat keyword string', + }, + }, + my_str: { + type: 'text', + }, + my_objects: { + total: { + type: 'long', + }, + type: { type: 'boolean' }, + }, + my_array: { + type: 'array', + items: { + total: { + type: 'long', + }, + type: { type: 'boolean' }, + }, + }, + my_str_array: { type: 'array', items: { type: 'keyword' } }, + my_index_signature_prop: { + count: { type: 'long' }, + avg: { type: 'float' }, + max: { type: 'long' }, + min: { type: 'long' }, + }, + }, +}); diff --git a/src/plugins/kibana_usage_collection/README.md b/src/plugins/kibana_usage_collection/README.md index 85d362cf0a9b1..9ad2bd987e1f4 100644 --- a/src/plugins/kibana_usage_collection/README.md +++ b/src/plugins/kibana_usage_collection/README.md @@ -3,9 +3,16 @@ This plugin registers the basic usage collectors from Kibana: - [Application Usage](./server/collectors/application_usage/README.md) -- UI Metrics -- Ops stats -- Number of Saved Objects per type -- [User-changed UI Settings](./server/collectors/management/README.md) -- CSP configuration - Core Metrics +- CSP configuration +- Kibana: Number of Saved Objects per type +- Localization data +- [User-changed UI Settings](./server/collectors/management/README.md) +- Ops stats +- UI Counts +- UI Metrics + + + + + diff --git a/src/plugins/kibana_usage_collection/server/collectors/application_usage/README.md b/src/plugins/kibana_usage_collection/server/collectors/application_usage/README.md index c66074b792bd0..1f7344a801227 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/application_usage/README.md +++ b/src/plugins/kibana_usage_collection/server/collectors/application_usage/README.md @@ -10,7 +10,7 @@ To track a sub view inside your application (ie a flyout, a tab, form step, etc) #### For a React Component -For tracking an application view rendered using react the simplest way is to wrap your component with the `TrackApplicationView` Higher order component: +For tracking an application view rendered using react the simplest way is to wrap your component with the `TrackApplicationView` Higher order component exposed from the `usageCollection` plugin. You will need to add the plugin to plugin's `kibana.json` file as an item in the `optionalPlugins` and `requiredBundles` declarations: kibana.json ```json @@ -26,6 +26,7 @@ kibana.json At the application level, the application must be wrapped by the `ApplicationUsageTrackingProvider` provided in the `usageCollection`'s setup contract. +For example: ```typescript jsx class MyPlugin implements Plugin { ... @@ -69,7 +70,6 @@ const MyTrackedComponent = () => { Application Usage will automatically track the active minutes on screen and clicks for both the application and the `MyComponent` component whenever it is mounted on the screen. Application Usage pauses counting screen minutes whenever the user is tabbed to another browser window. The prop `viewId` is used as a unique identifier for your plugin. The Application Id is automatically attached to the tracked usage, based on the ID used when registering your app via `core.application.register`. - ## Application Usage Telemetry Data This collector reports the number of general clicks and minutes on screen for each registered application in Kibana. @@ -126,4 +126,4 @@ In order to keep the count of the events, this collector uses 3 Saved Objects: All the types use the shared fields `appId: 'keyword'`, `viewId: 'keyword'`, `numberOfClicks: 'long'` and `minutesOnScreen: 'float'`, but they are currently not added in the mappings because we don't use them for search purposes, and we need to be thoughtful with the number of mapped fields in the SavedObjects index ([#43673](https://github.com/elastic/kibana/issues/43673)). `application_usage_transactional` and `application_usage_daily` also store `timestamp: { type: 'date' }`. -Rollups uses `appId` in the savedObject id for the default view. For other views `viewId` is concatenated. This keeps backwards compatiblity with previously stored documents on the clusters without requiring any form of migration. \ No newline at end of file +Rollups uses `appId` in the savedObject id for the default view. For other views `viewId` is concatenated. This keeps backwards compatiblity with previously stored documents on the clusters without requiring any form of migration. diff --git a/src/plugins/kibana_usage_collection/server/collectors/application_usage/schema.ts b/src/plugins/kibana_usage_collection/server/collectors/application_usage/schema.ts index 136abc9049053..062d751ef454c 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/application_usage/schema.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/application_usage/schema.ts @@ -10,29 +10,106 @@ import { MakeSchemaFrom } from 'src/plugins/usage_collection/server'; import { ApplicationUsageTelemetryReport } from './telemetry_application_usage_collector'; const commonSchema: MakeSchemaFrom = { - appId: { type: 'keyword' }, - viewId: { type: 'keyword' }, - clicks_total: { type: 'long' }, - clicks_7_days: { type: 'long' }, - clicks_30_days: { type: 'long' }, - clicks_90_days: { type: 'long' }, - minutes_on_screen_total: { type: 'float' }, - minutes_on_screen_7_days: { type: 'float' }, - minutes_on_screen_30_days: { type: 'float' }, - minutes_on_screen_90_days: { type: 'float' }, + appId: { type: 'keyword', _meta: { description: 'The application being tracked' } }, + viewId: { type: 'keyword', _meta: { description: 'Always `main`' } }, + clicks_total: { + type: 'long', + _meta: { + description: 'General number of clicks in the application since we started counting them', + }, + }, + clicks_7_days: { + type: 'long', + _meta: { description: 'General number of clicks in the application over the last 7 days' }, + }, + clicks_30_days: { + type: 'long', + _meta: { description: 'General number of clicks in the application over the last 30 days' }, + }, + clicks_90_days: { + type: 'long', + _meta: { description: 'General number of clicks in the application over the last 90 days' }, + }, + minutes_on_screen_total: { + type: 'float', + _meta: { + description: + 'Minutes the application is active and on-screen since we started counting them.', + }, + }, + minutes_on_screen_7_days: { + type: 'float', + _meta: { description: 'Minutes the application is active and on-screen over the last 7 days' }, + }, + minutes_on_screen_30_days: { + type: 'float', + _meta: { description: 'Minutes the application is active and on-screen over the last 30 days' }, + }, + minutes_on_screen_90_days: { + type: 'float', + _meta: { description: 'Minutes the application is active and on-screen over the last 90 days' }, + }, views: { type: 'array', items: { - appId: { type: 'keyword' }, - viewId: { type: 'keyword' }, - clicks_total: { type: 'long' }, - clicks_7_days: { type: 'long' }, - clicks_30_days: { type: 'long' }, - clicks_90_days: { type: 'long' }, - minutes_on_screen_total: { type: 'float' }, - minutes_on_screen_7_days: { type: 'float' }, - minutes_on_screen_30_days: { type: 'float' }, - minutes_on_screen_90_days: { type: 'float' }, + appId: { type: 'keyword', _meta: { description: 'The application being tracked' } }, + viewId: { type: 'keyword', _meta: { description: 'The application view being tracked' } }, + clicks_total: { + type: 'long', + _meta: { + description: + 'General number of clicks in the application sub view since we started counting them', + }, + }, + clicks_7_days: { + type: 'long', + _meta: { + description: + 'General number of clicks in the active application sub view over the last 7 days', + }, + }, + clicks_30_days: { + type: 'long', + _meta: { + description: + 'General number of clicks in the active application sub view over the last 30 days', + }, + }, + clicks_90_days: { + type: 'long', + _meta: { + description: + 'General number of clicks in the active application sub view over the last 90 days', + }, + }, + minutes_on_screen_total: { + type: 'float', + _meta: { + description: + 'Minutes the application sub view is active and on-screen since we started counting them.', + }, + }, + minutes_on_screen_7_days: { + type: 'float', + _meta: { + description: + 'Minutes the application is active and on-screen active application sub view over the last 7 days', + }, + }, + minutes_on_screen_30_days: { + type: 'float', + _meta: { + description: + 'Minutes the application is active and on-screen active application sub view over the last 30 days', + }, + }, + minutes_on_screen_90_days: { + type: 'float', + _meta: { + description: + 'Minutes the application is active and on-screen active application sub view over the last 90 days', + }, + }, }, }, }; diff --git a/src/plugins/kibana_usage_collection/server/collectors/core/core_usage_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/core/core_usage_collector.ts index 4a1848586114a..70ac2302dc3b4 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/core/core_usage_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/core/core_usage_collector.ts @@ -19,76 +19,276 @@ export function getCoreUsageCollector( schema: { config: { elasticsearch: { - sniffOnStart: { type: 'boolean' }, - sniffIntervalMs: { type: 'long' }, - sniffOnConnectionFault: { type: 'boolean' }, - numberOfHostsConfigured: { type: 'long' }, - requestHeadersWhitelistConfigured: { type: 'boolean' }, - customHeadersConfigured: { type: 'boolean' }, - shardTimeoutMs: { type: 'long' }, - requestTimeoutMs: { type: 'long' }, - pingTimeoutMs: { type: 'long' }, - logQueries: { type: 'boolean' }, + sniffOnStart: { + type: 'boolean', + _meta: { + description: + 'Indicates if an attempt should be made to find other Elasticsearch nodes on startup.', + }, + }, + sniffIntervalMs: { + type: 'long', + _meta: { + description: + 'Time in milliseconds between requests to check Elasticsearch for an updated list of nodes.', + }, + }, + sniffOnConnectionFault: { + type: 'boolean', + _meta: { + description: + 'Indicates if the list of Elasticsearch nodes should be updated immediately following a connection fault.', + }, + }, + numberOfHostsConfigured: { + type: 'long', + _meta: { + description: 'Number of Elasticsearch instances configured to use for queries.', + }, + }, + requestHeadersWhitelistConfigured: { + type: 'boolean', + _meta: { + description: + 'Indicates if Kibana client-side headers to send to Elasticsearch is different to the default value.', + }, + }, + customHeadersConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if any custom headers have been configured.' }, + }, + shardTimeoutMs: { + type: 'long', + _meta: { + description: + 'Time in milliseconds for Elasticsearch to wait for responses from shards.', + }, + }, + requestTimeoutMs: { + type: 'long', + _meta: { + description: + 'Time in milliseconds to wait for responses from the back end or Elasticsearch.', + }, + }, + pingTimeoutMs: { + type: 'long', + _meta: { + description: 'Time in milliseconds to wait for Elasticsearch to respond to pings.', + }, + }, + logQueries: { + type: 'boolean', + _meta: { description: 'Indicates if queries sent to Elasticsearch should be logged.' }, + }, ssl: { - verificationMode: { type: 'keyword' }, - certificateAuthoritiesConfigured: { type: 'boolean' }, - certificateConfigured: { type: 'boolean' }, - keyConfigured: { type: 'boolean' }, - keystoreConfigured: { type: 'boolean' }, - truststoreConfigured: { type: 'boolean' }, - alwaysPresentCertificate: { type: 'boolean' }, + verificationMode: { + type: 'keyword', + _meta: { + description: + 'The verification of the server certificate that Kibana receives when making an outbound SSL or TLS connection to Elasticsearch', + }, + }, + certificateAuthoritiesConfigured: { + type: 'boolean', + _meta: { + description: + 'Indicates if any PEM-encoded X.509 certificate authority certificates are configured.', + }, + }, + certificateConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if a certificate authority is configured.' }, + }, + keyConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if a certificate key is configured.' }, + }, + keystoreConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if a keystore is configured.' }, + }, + truststoreConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if a path to a PKCS#12 trust store is configured.' }, + }, + alwaysPresentCertificate: { + type: 'boolean', + _meta: { + description: + 'Indicates if a client certificate is presented when requested by Elasticsearch.', + }, + }, + }, + apiVersion: { + type: 'keyword', + _meta: { description: 'Version of the Elasticsearch API used.' }, + }, + healthCheckDelayMs: { + type: 'long', + _meta: { + description: + 'The interval in miliseconds between health check requests Kibana sends to the Elasticsearch.', + }, }, - apiVersion: { type: 'keyword' }, - healthCheckDelayMs: { type: 'long' }, }, http: { - basePathConfigured: { type: 'boolean' }, - maxPayloadInBytes: { type: 'long' }, - rewriteBasePath: { type: 'boolean' }, - keepaliveTimeout: { type: 'long' }, - socketTimeout: { type: 'long' }, + basePathConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if a base path has been configured.' }, + }, + maxPayloadInBytes: { + type: 'long', + _meta: { description: 'Maximum payload size in bytes that is allowed.' }, + }, + rewriteBasePath: { + type: 'boolean', + _meta: { description: 'Indicates if the base path should be rewritten.' }, + }, + keepaliveTimeout: { + type: 'long', + _meta: { description: 'How long to keep sockets alive globally in milliseconds.' }, + }, + socketTimeout: { + type: 'long', + _meta: { + description: 'How long to wait before closing inactive sockets in milliseconds.', + }, + }, compression: { - enabled: { type: 'boolean' }, - referrerWhitelistConfigured: { type: 'boolean' }, + enabled: { + type: 'boolean', + _meta: { description: 'Indicates if HTTP response compression is enabled.' }, + }, + referrerWhitelistConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if any responses should be compressed.' }, + }, }, xsrf: { - disableProtection: { type: 'boolean' }, - allowlistConfigured: { type: 'boolean' }, + disableProtection: { + type: 'boolean', + _meta: { description: 'Indicates if protection against xsrf should be disabled.' }, + }, + allowlistConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if any http headers have been whitelisted.' }, + }, }, requestId: { - allowFromAnyIp: { type: 'boolean' }, - ipAllowlistConfigured: { type: 'boolean' }, + allowFromAnyIp: { + type: 'boolean', + _meta: { description: 'Indicates if any http headers have been whitelisted.' }, + }, + ipAllowlistConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if a list of specific IPs has been configured.' }, + }, }, ssl: { - certificateAuthoritiesConfigured: { type: 'boolean' }, - certificateConfigured: { type: 'boolean' }, - cipherSuites: { type: 'array', items: { type: 'keyword' } }, - keyConfigured: { type: 'boolean' }, - keystoreConfigured: { type: 'boolean' }, - truststoreConfigured: { type: 'boolean' }, - redirectHttpFromPortConfigured: { type: 'boolean' }, - supportedProtocols: { type: 'array', items: { type: 'keyword' } }, - clientAuthentication: { type: 'keyword' }, + certificateAuthoritiesConfigured: { + type: 'boolean', + _meta: { + description: 'Indicates if ssl certificate authorities have been configured.', + }, + }, + certificateConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if an ssl certificate is configured.' }, + }, + cipherSuites: { + type: 'array', + items: { + type: 'keyword', + _meta: { description: 'The keyword of the cipher suite used.' }, + }, + }, + keyConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if an ssl key has been configured.' }, + }, + keystoreConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if an ssl keystore has been configured.' }, + }, + truststoreConfigured: { + type: 'boolean', + _meta: { description: 'Indicates if a path to a PKCS#12 trust store is configured.' }, + }, + redirectHttpFromPortConfigured: { + type: 'boolean', + _meta: { + description: + 'Indicates if a port to redirect all http requests has been configured.', + }, + }, + supportedProtocols: { + type: 'array', + items: { + type: 'keyword', + _meta: { description: 'The version of a supported protocol used.' }, + }, + }, + clientAuthentication: { + type: 'keyword', + _meta: { + description: + 'The behavior in Kibana for requesting a certificate from client connections.', + }, + }, }, }, logging: { - appendersTypesUsed: { type: 'array', items: { type: 'keyword' } }, - loggersConfiguredCount: { type: 'long' }, + appendersTypesUsed: { + type: 'array', + items: { + type: 'keyword', + _meta: { description: 'The type of logging appender confgured.' }, + }, + }, + loggersConfiguredCount: { + type: 'long', + _meta: { description: 'The total number of logging appenders configured.' }, + }, }, savedObjects: { - customIndex: { type: 'boolean' }, - maxImportPayloadBytes: { type: 'long' }, - maxImportExportSizeBytes: { type: 'long' }, + customIndex: { + type: 'boolean', + _meta: { + description: + 'Indicates if the saved objects index is different to the standard internal .kibana index.', + }, + }, + maxImportPayloadBytes: { + type: 'long', + _meta: { + description: + 'Maximum size of the payload in bytes of saved objects that can be imported.', + }, + }, + maxImportExportSizeBytes: { + type: 'long', + _meta: { + description: + 'Maximum size in bytes of saved object that can be imported or exported.', + }, + }, }, }, environment: { memory: { - heapSizeLimit: { type: 'long' }, - heapTotalBytes: { type: 'long' }, - heapUsedBytes: { type: 'long' }, + heapSizeLimit: { type: 'long', _meta: { description: 'Host memory heap size limit.' } }, + heapTotalBytes: { + type: 'long', + _meta: { description: 'Total memory heap size of host that is available in bytes.' }, + }, + heapUsedBytes: { + type: 'long', + _meta: { description: 'Total memory heap size of host that is used in bytes.' }, + }, }, }, services: { @@ -96,117 +296,576 @@ export function getCoreUsageCollector( indices: { type: 'array', items: { - docsCount: { type: 'long' }, - docsDeleted: { type: 'long' }, - alias: { type: 'keyword' }, - primaryStoreSizeBytes: { type: 'long' }, - storeSizeBytes: { type: 'long' }, + docsCount: { + type: 'long', + _meta: { + description: + 'The number of documents in the index, including hidden nested documents.', + }, + }, + docsDeleted: { + type: 'long', + _meta: { + description: + 'The number of deleted documents in the index, including hidden nested documents.', + }, + }, + alias: { + type: 'keyword', + _meta: { + description: + 'The alias used to map customized saved object index names to standard index names (.kibana or .kibana_task_manager).', + }, + }, + primaryStoreSizeBytes: { + type: 'long', + _meta: { description: 'The size in bytes of the index, for primaries only.' }, + }, + storeSizeBytes: { + type: 'long', + _meta: { + description: 'The size in bytes of the index, for primaries and replicas.', + }, + }, }, }, }, }, // Saved Objects Client APIs - 'apiCalls.savedObjectsBulkCreate.total': { type: 'long' }, - 'apiCalls.savedObjectsBulkCreate.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsBulkCreate.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsBulkCreate.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsBulkCreate.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsBulkCreate.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsBulkCreate.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsBulkGet.total': { type: 'long' }, - 'apiCalls.savedObjectsBulkGet.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsBulkGet.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsBulkGet.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsBulkGet.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsBulkGet.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsBulkGet.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsBulkUpdate.total': { type: 'long' }, - 'apiCalls.savedObjectsBulkUpdate.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsBulkUpdate.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsBulkUpdate.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsBulkUpdate.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsBulkUpdate.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsBulkUpdate.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsCreate.total': { type: 'long' }, - 'apiCalls.savedObjectsCreate.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsCreate.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsCreate.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsCreate.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsCreate.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsCreate.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsDelete.total': { type: 'long' }, - 'apiCalls.savedObjectsDelete.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsDelete.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsDelete.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsDelete.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsDelete.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsDelete.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsFind.total': { type: 'long' }, - 'apiCalls.savedObjectsFind.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsFind.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsFind.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsFind.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsFind.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsFind.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsGet.total': { type: 'long' }, - 'apiCalls.savedObjectsGet.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsGet.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsGet.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsGet.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsGet.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsGet.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsResolve.total': { type: 'long' }, - 'apiCalls.savedObjectsResolve.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsResolve.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsResolve.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsResolve.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsResolve.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsResolve.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsUpdate.total': { type: 'long' }, - 'apiCalls.savedObjectsUpdate.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsUpdate.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsUpdate.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsUpdate.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsUpdate.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsUpdate.namespace.custom.kibanaRequest.no': { type: 'long' }, + 'apiCalls.savedObjectsBulkCreate.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsBulkCreate.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsBulkCreate.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsBulkCreate.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsBulkCreate.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsBulkCreate.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsBulkCreate.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsBulkGet.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsBulkGet.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsBulkGet.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsBulkGet.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsBulkGet.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsBulkGet.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsBulkGet.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsBulkUpdate.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsBulkUpdate.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsBulkUpdate.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsBulkUpdate.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsBulkUpdate.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsBulkUpdate.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsBulkUpdate.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsCreate.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsCreate.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsCreate.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsCreate.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsCreate.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsCreate.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsCreate.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsDelete.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsDelete.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsDelete.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsDelete.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsDelete.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsDelete.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsDelete.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsFind.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsFind.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsFind.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsFind.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsFind.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsFind.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsFind.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsGet.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsGet.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsGet.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsGet.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsGet.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsGet.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsGet.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsResolve.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsResolve.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsResolve.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsResolve.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsResolve.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsResolve.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsResolve.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsUpdate.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsUpdate.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsUpdate.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsUpdate.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsUpdate.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsUpdate.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsUpdate.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, // Saved Objects Management APIs - 'apiCalls.savedObjectsImport.total': { type: 'long' }, - 'apiCalls.savedObjectsImport.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsImport.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsImport.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsImport.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsImport.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsImport.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsImport.createNewCopiesEnabled.yes': { type: 'long' }, - 'apiCalls.savedObjectsImport.createNewCopiesEnabled.no': { type: 'long' }, - 'apiCalls.savedObjectsImport.overwriteEnabled.yes': { type: 'long' }, - 'apiCalls.savedObjectsImport.overwriteEnabled.no': { type: 'long' }, - 'apiCalls.savedObjectsResolveImportErrors.total': { type: 'long' }, - 'apiCalls.savedObjectsResolveImportErrors.namespace.default.total': { type: 'long' }, + 'apiCalls.savedObjectsImport.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsImport.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsImport.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsImport.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsImport.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsImport.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsImport.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsImport.createNewCopiesEnabled.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called with the `createNewCopiesEnabled` option.', + }, + }, + 'apiCalls.savedObjectsImport.createNewCopiesEnabled.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called without the `createNewCopiesEnabled` option.', + }, + }, + 'apiCalls.savedObjectsImport.overwriteEnabled.yes': { + type: 'long', + _meta: { + description: 'How many times this API has been called with the `overwrite` option.', + }, + }, + 'apiCalls.savedObjectsImport.overwriteEnabled.no': { + type: 'long', + _meta: { + description: 'How many times this API has been called without the `overwrite` option.', + }, + }, + 'apiCalls.savedObjectsResolveImportErrors.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsResolveImportErrors.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, 'apiCalls.savedObjectsResolveImportErrors.namespace.default.kibanaRequest.yes': { type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, }, 'apiCalls.savedObjectsResolveImportErrors.namespace.default.kibanaRequest.no': { type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsResolveImportErrors.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, }, - 'apiCalls.savedObjectsResolveImportErrors.namespace.custom.total': { type: 'long' }, 'apiCalls.savedObjectsResolveImportErrors.namespace.custom.kibanaRequest.yes': { type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, }, 'apiCalls.savedObjectsResolveImportErrors.namespace.custom.kibanaRequest.no': { type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsResolveImportErrors.createNewCopiesEnabled.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called with the `createNewCopiesEnabled` option.', + }, + }, + 'apiCalls.savedObjectsResolveImportErrors.createNewCopiesEnabled.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called without the `createNewCopiesEnabled` option.', + }, + }, + 'apiCalls.savedObjectsExport.total': { + type: 'long', + _meta: { description: 'How many times this API has been called.' }, + }, + 'apiCalls.savedObjectsExport.namespace.default.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in the Default space.' }, + }, + 'apiCalls.savedObjectsExport.namespace.default.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsExport.namespace.default.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in the Default space.', + }, + }, + 'apiCalls.savedObjectsExport.namespace.custom.total': { + type: 'long', + _meta: { description: 'How many times this API has been called in a custom space.' }, + }, + 'apiCalls.savedObjectsExport.namespace.custom.kibanaRequest.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by the Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsExport.namespace.custom.kibanaRequest.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called by a non-Kibana client in a custom space.', + }, + }, + 'apiCalls.savedObjectsExport.allTypesSelected.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called with the `createNewCopiesEnabled` option.', + }, + }, + 'apiCalls.savedObjectsExport.allTypesSelected.no': { + type: 'long', + _meta: { + description: 'How many times this API has been called without all types selected.', + }, }, - 'apiCalls.savedObjectsResolveImportErrors.createNewCopiesEnabled.yes': { type: 'long' }, - 'apiCalls.savedObjectsResolveImportErrors.createNewCopiesEnabled.no': { type: 'long' }, - 'apiCalls.savedObjectsExport.total': { type: 'long' }, - 'apiCalls.savedObjectsExport.namespace.default.total': { type: 'long' }, - 'apiCalls.savedObjectsExport.namespace.default.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsExport.namespace.default.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsExport.namespace.custom.total': { type: 'long' }, - 'apiCalls.savedObjectsExport.namespace.custom.kibanaRequest.yes': { type: 'long' }, - 'apiCalls.savedObjectsExport.namespace.custom.kibanaRequest.no': { type: 'long' }, - 'apiCalls.savedObjectsExport.allTypesSelected.yes': { type: 'long' }, - 'apiCalls.savedObjectsExport.allTypesSelected.no': { type: 'long' }, }, fetch() { return getCoreUsageDataService().getCoreUsageData(); diff --git a/src/plugins/kibana_usage_collection/server/collectors/csp/csp_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/csp/csp_collector.ts index 8119fe394b60c..fa0cd55cd3072 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/csp/csp_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/csp/csp_collector.ts @@ -34,12 +34,15 @@ export function createCspCollector(http: HttpServiceSetup): UsageCollectorOption schema: { strict: { type: 'boolean', + _meta: { description: 'Indicates if strict mode should be used.' }, }, warnLegacyBrowsers: { type: 'boolean', + _meta: { description: 'Indicates if legacy browser versions should be warned.' }, }, rulesChangedFromDefault: { type: 'boolean', + _meta: { description: 'Indicates if the rules have been changed from the default.' }, }, }, }; diff --git a/src/plugins/kibana_usage_collection/server/collectors/kibana/kibana_usage_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/kibana/kibana_usage_collector.ts index 8c1fe31e963d0..d9f4718cdb475 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/kibana/kibana_usage_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/kibana/kibana_usage_collector.ts @@ -24,13 +24,37 @@ export function getKibanaUsageCollector( type: 'kibana', isReady: () => true, schema: { - index: { type: 'keyword' }, - dashboard: { total: { type: 'long' } }, - visualization: { total: { type: 'long' } }, - search: { total: { type: 'long' } }, - index_pattern: { total: { type: 'long' } }, - graph_workspace: { total: { type: 'long' } }, - timelion_sheet: { total: { type: 'long' } }, + index: { type: 'keyword', _meta: { description: 'The index storing the saved objects' } }, + dashboard: { + total: { type: 'long', _meta: { description: 'Total number of dashboard saved objects' } }, + }, + visualization: { + total: { + type: 'long', + _meta: { description: 'Total number of visualization saved objects' }, + }, + }, + search: { + total: { type: 'long', _meta: { description: 'Total number of search saved objects' } }, + }, + index_pattern: { + total: { + type: 'long', + _meta: { description: 'Total number of index_pattern saved objects' }, + }, + }, + graph_workspace: { + total: { + type: 'long', + _meta: { description: 'Total number of graph_workspace saved objects' }, + }, + }, + timelion_sheet: { + total: { + type: 'long', + _meta: { description: 'Total number of timelion_sheet saved objects' }, + }, + }, }, async fetch({ esClient }) { const { diff --git a/src/plugins/kibana_usage_collection/server/collectors/localization/telemetry_localization_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/localization/telemetry_localization_collector.ts index 6ad2fd9270bc7..34ab4a5be7d28 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/localization/telemetry_localization_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/localization/telemetry_localization_collector.ts @@ -53,9 +53,27 @@ export function registerLocalizationUsageCollector( isReady: () => true, fetch: createCollectorFetch(i18n), schema: { - locale: { type: 'keyword' }, - integrities: { DYNAMIC_KEY: { type: 'text' } }, - labelsCount: { type: 'long' }, + locale: { + type: 'keyword', + _meta: { + description: 'The default locale set on the Kibana system', + }, + }, + integrities: { + DYNAMIC_KEY: { + type: 'text', + _meta: { + description: + 'Translation file hash. If the hash is different it indicates that a custom translation file is used', + }, + }, + }, + labelsCount: { + type: 'long', + _meta: { + description: 'The number of translated labels', + }, + }, }, }); diff --git a/src/plugins/kibana_usage_collection/server/collectors/management/schema.ts b/src/plugins/kibana_usage_collection/server/collectors/management/schema.ts index 2fe93c45fb8a7..a35c45d2273b6 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/management/schema.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/management/schema.ts @@ -11,121 +11,409 @@ import { UsageStats } from './types'; export const stackManagementSchema: MakeSchemaFrom = { // sensitive - 'timelion:quandl.key': { type: 'keyword' }, - 'securitySolution:defaultIndex': { type: 'keyword' }, - 'securitySolution:newsFeedUrl': { type: 'keyword' }, - 'xpackReporting:customPdfLogo': { type: 'keyword' }, - 'notifications:banner': { type: 'keyword' }, - 'timelion:graphite.url': { type: 'keyword' }, - 'xpackDashboardMode:roles': { type: 'keyword' }, - 'securitySolution:ipReputationLinks': { type: 'keyword' }, - 'xPack:defaultAdminEmail': { type: 'keyword' }, + 'timelion:quandl.key': { + type: 'keyword', + _meta: { description: 'Default value of the setting was changed.' }, + }, + 'securitySolution:defaultIndex': { + type: 'keyword', + _meta: { description: 'Default value of the setting was changed.' }, + }, + 'securitySolution:newsFeedUrl': { + type: 'keyword', + _meta: { description: 'Default value of the setting was changed.' }, + }, + 'xpackReporting:customPdfLogo': { + type: 'keyword', + _meta: { description: 'Default value of the setting was changed.' }, + }, + 'notifications:banner': { + type: 'keyword', + _meta: { description: 'Default value of the setting was changed.' }, + }, + 'timelion:graphite.url': { + type: 'keyword', + _meta: { description: 'Default value of the setting changed.' }, + }, + 'xpackDashboardMode:roles': { + type: 'keyword', + _meta: { description: 'Default value of the setting was changed.' }, + }, + 'securitySolution:ipReputationLinks': { + type: 'keyword', + _meta: { description: 'Default value of the setting was changed.' }, + }, + 'xPack:defaultAdminEmail': { + type: 'keyword', + _meta: { description: 'Default value of the setting was changed.' }, + }, // non-sensitive - 'visualize:enableLabs': { type: 'boolean' }, - 'visualization:heatmap:maxBuckets': { type: 'long' }, - 'visualization:colorMapping': { type: 'text' }, - 'visualization:regionmap:showWarnings': { type: 'boolean' }, - 'visualization:dimmingOpacity': { type: 'float' }, - 'visualization:tileMap:maxPrecision': { type: 'long' }, - 'csv:separator': { type: 'keyword' }, - 'visualization:tileMap:WMSdefaults': { type: 'text' }, - 'timelion:target_buckets': { type: 'long' }, - 'timelion:max_buckets': { type: 'long' }, - 'timelion:es.timefield': { type: 'keyword' }, - 'timelion:min_interval': { type: 'keyword' }, - 'timelion:default_rows': { type: 'long' }, - 'timelion:default_columns': { type: 'long' }, - 'timelion:es.default_index': { type: 'keyword' }, - 'timelion:showTutorial': { type: 'boolean' }, - 'securitySolution:timeDefaults': { type: 'keyword' }, - 'securitySolution:defaultAnomalyScore': { type: 'long' }, - 'securitySolution:refreshIntervalDefaults': { type: 'keyword' }, - 'securitySolution:enableNewsFeed': { type: 'boolean' }, - 'search:includeFrozen': { type: 'boolean' }, - 'courier:maxConcurrentShardRequests': { type: 'long' }, - 'courier:batchSearches': { type: 'boolean' }, - 'courier:setRequestPreference': { type: 'keyword' }, - 'courier:customRequestPreference': { type: 'keyword' }, - 'courier:ignoreFilterIfFieldNotInIndex': { type: 'boolean' }, - 'rollups:enableIndexPatterns': { type: 'boolean' }, - 'notifications:lifetime:warning': { type: 'long' }, - 'notifications:lifetime:banner': { type: 'long' }, - 'notifications:lifetime:info': { type: 'long' }, - 'notifications:lifetime:error': { type: 'long' }, - 'doc_table:highlight': { type: 'boolean' }, - 'discover:searchOnPageLoad': { type: 'boolean' }, + 'visualize:enableLabs': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'visualization:heatmap:maxBuckets': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'visualization:colorMapping': { + type: 'text', + _meta: { description: 'Non-default value of setting.' }, + }, + 'visualization:regionmap:showWarnings': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'visualization:dimmingOpacity': { + type: 'float', + _meta: { description: 'Non-default value of setting.' }, + }, + 'visualization:tileMap:maxPrecision': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'csv:separator': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'visualization:tileMap:WMSdefaults': { + type: 'text', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timelion:target_buckets': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timelion:max_buckets': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timelion:es.timefield': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timelion:min_interval': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timelion:default_rows': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timelion:default_columns': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timelion:es.default_index': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timelion:showTutorial': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'securitySolution:timeDefaults': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'securitySolution:defaultAnomalyScore': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'securitySolution:refreshIntervalDefaults': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'securitySolution:enableNewsFeed': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'search:includeFrozen': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'courier:maxConcurrentShardRequests': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'courier:batchSearches': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'courier:setRequestPreference': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'courier:customRequestPreference': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'courier:ignoreFilterIfFieldNotInIndex': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'rollups:enableIndexPatterns': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'notifications:lifetime:warning': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'notifications:lifetime:banner': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'notifications:lifetime:info': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'notifications:lifetime:error': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'doc_table:highlight': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'discover:searchOnPageLoad': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, // eslint-disable-next-line @typescript-eslint/naming-convention - 'doc_table:hideTimeColumn': { type: 'boolean' }, - 'discover:sampleSize': { type: 'long' }, + 'doc_table:hideTimeColumn': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'discover:sampleSize': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, defaultColumns: { type: 'array', items: { type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, }, }, - 'context:defaultSize': { type: 'long' }, - 'discover:aggs:terms:size': { type: 'long' }, + 'context:defaultSize': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'discover:aggs:terms:size': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, 'context:tieBreakerFields': { type: 'array', items: { type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, }, }, - 'discover:sort:defaultOrder': { type: 'keyword' }, - 'context:step': { type: 'long' }, - 'accessibility:disableAnimations': { type: 'boolean' }, - 'ml:fileDataVisualizerMaxFileSize': { type: 'keyword' }, - 'ml:anomalyDetection:results:enableTimeDefaults': { type: 'boolean' }, - 'ml:anomalyDetection:results:timeDefaults': { type: 'keyword' }, - 'truncate:maxHeight': { type: 'long' }, - 'timepicker:timeDefaults': { type: 'keyword' }, - 'timepicker:refreshIntervalDefaults': { type: 'keyword' }, - 'timepicker:quickRanges': { type: 'keyword' }, - 'theme:version': { type: 'keyword' }, - 'theme:darkMode': { type: 'boolean' }, - 'state:storeInSessionStorage': { type: 'boolean' }, - 'savedObjects:perPage': { type: 'long' }, - 'search:queryLanguage': { type: 'keyword' }, - 'shortDots:enable': { type: 'boolean' }, - 'sort:options': { type: 'keyword' }, - 'savedObjects:listingLimit': { type: 'long' }, - 'query:queryString:options': { type: 'keyword' }, - 'metrics:max_buckets': { type: 'long' }, - 'query:allowLeadingWildcards': { type: 'boolean' }, + 'discover:sort:defaultOrder': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'context:step': { type: 'long', _meta: { description: 'Non-default value of setting.' } }, + 'accessibility:disableAnimations': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'ml:fileDataVisualizerMaxFileSize': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'ml:anomalyDetection:results:enableTimeDefaults': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'ml:anomalyDetection:results:timeDefaults': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'truncate:maxHeight': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timepicker:timeDefaults': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timepicker:refreshIntervalDefaults': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'timepicker:quickRanges': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'theme:version': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'theme:darkMode': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'state:storeInSessionStorage': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'savedObjects:perPage': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'search:queryLanguage': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'shortDots:enable': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'sort:options': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'savedObjects:listingLimit': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'query:queryString:options': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'metrics:max_buckets': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'query:allowLeadingWildcards': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, metaFields: { type: 'array', items: { type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, }, }, - 'indexPattern:placeholder': { type: 'keyword' }, - 'histogram:barTarget': { type: 'long' }, - 'histogram:maxBars': { type: 'long' }, - 'format:number:defaultLocale': { type: 'keyword' }, - 'format:percent:defaultPattern': { type: 'keyword' }, - 'format:number:defaultPattern': { type: 'keyword' }, - 'history:limit': { type: 'long' }, - 'format:defaultTypeMap': { type: 'keyword' }, - 'format:currency:defaultPattern': { type: 'keyword' }, - defaultIndex: { type: 'keyword' }, - 'format:bytes:defaultPattern': { type: 'keyword' }, - 'filters:pinnedByDefault': { type: 'boolean' }, - 'filterEditor:suggestValues': { type: 'boolean' }, - 'fields:popularLimit': { type: 'long' }, - dateNanosFormat: { type: 'keyword' }, - defaultRoute: { type: 'keyword' }, - 'dateFormat:tz': { type: 'keyword' }, - 'dateFormat:scaled': { type: 'keyword' }, - 'csv:quoteValues': { type: 'boolean' }, - 'dateFormat:dow': { type: 'keyword' }, - dateFormat: { type: 'keyword' }, - 'autocomplete:useTimeRange': { type: 'boolean' }, - 'search:timeout': { type: 'long' }, - 'visualization:visualize:legacyChartsLibrary': { type: 'boolean' }, - 'doc_table:legacy': { type: 'boolean' }, - 'discover:modifyColumnsOnSwitch': { type: 'boolean' }, - 'discover:searchFieldsFromSource': { type: 'boolean' }, - 'securitySolution:rulesTableRefresh': { type: 'text' }, - 'apm:enableSignificantTerms': { type: 'boolean' }, - 'apm:enableServiceOverview': { type: 'boolean' }, + 'indexPattern:placeholder': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'histogram:barTarget': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'histogram:maxBars': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'format:number:defaultLocale': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'format:percent:defaultPattern': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'format:number:defaultPattern': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'history:limit': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'format:defaultTypeMap': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'format:currency:defaultPattern': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + defaultIndex: { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'format:bytes:defaultPattern': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'filters:pinnedByDefault': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'filterEditor:suggestValues': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'fields:popularLimit': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + dateNanosFormat: { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + defaultRoute: { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'dateFormat:tz': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'dateFormat:scaled': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + 'csv:quoteValues': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'dateFormat:dow': { + type: 'keyword', + _meta: { description: 'Non-default value of setting.' }, + }, + dateFormat: { type: 'keyword', _meta: { description: 'Non-default value of setting.' } }, + 'autocomplete:useTimeRange': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'search:timeout': { + type: 'long', + _meta: { description: 'Non-default value of setting.' }, + }, + 'visualization:visualize:legacyChartsLibrary': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'doc_table:legacy': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'discover:modifyColumnsOnSwitch': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'discover:searchFieldsFromSource': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'securitySolution:rulesTableRefresh': { + type: 'text', + _meta: { description: 'Non-default value of setting.' }, + }, + 'apm:enableSignificantTerms': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, + 'apm:enableServiceOverview': { + type: 'boolean', + _meta: { description: 'Non-default value of setting.' }, + }, }; diff --git a/src/plugins/kibana_usage_collection/server/collectors/management/telemetry_management_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/management/telemetry_management_collector.ts index df53c770603cc..cba5140997f3f 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/management/telemetry_management_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/management/telemetry_management_collector.ts @@ -8,9 +8,9 @@ import { IUiSettingsClient } from 'kibana/server'; import { UsageCollectionSetup } from 'src/plugins/usage_collection/server'; -import { stackManagementSchema } from './schema'; import { UsageStats } from './types'; import { REDACTED_KEYWORD } from '../../../common/constants'; +import { stackManagementSchema } from './schema'; export function createCollectorFetch(getUiSettingsClient: () => IUiSettingsClient | undefined) { return async function fetchUsageStats(): Promise { @@ -27,7 +27,6 @@ export function createCollectorFetch(getUiSettingsClient: () => IUiSettingsClien obj[key] = sensitive ? REDACTED_KEYWORD : userValue; return obj; }, {}); - return modifiedEntries; }; } diff --git a/src/plugins/kibana_usage_collection/server/collectors/ops_stats/ops_stats_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/ops_stats/ops_stats_collector.ts index 91ab77d202dbd..7959b67b4f468 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/ops_stats/ops_stats_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/ops_stats/ops_stats_collector.ts @@ -12,7 +12,6 @@ import moment from 'moment'; import { OpsMetrics } from 'kibana/server'; import { UsageCollectionSetup } from 'src/plugins/usage_collection/server'; import { KIBANA_STATS_TYPE } from '../../../common/constants'; - interface OpsStatsMetrics extends Omit { timestamp: string; response_times: { diff --git a/src/plugins/kibana_usage_collection/server/collectors/ui_counters/register_ui_counters_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/ui_counters/register_ui_counters_collector.ts index c754649b34eb1..dc3fac7382094 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/ui_counters/register_ui_counters_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/ui_counters/register_ui_counters_collector.ts @@ -52,12 +52,27 @@ export function registerUiCountersUsageCollector(usageCollection: UsageCollectio dailyEvents: { type: 'array', items: { - appName: { type: 'keyword' }, - eventName: { type: 'keyword' }, - lastUpdatedAt: { type: 'date' }, - fromTimestamp: { type: 'date' }, - counterType: { type: 'keyword' }, - total: { type: 'integer' }, + appName: { + type: 'keyword', + _meta: { description: 'Name of the app reporting ui counts.' }, + }, + eventName: { + type: 'keyword', + _meta: { description: 'Name of the event that happened.' }, + }, + lastUpdatedAt: { + type: 'date', + _meta: { description: 'Time at which the metric was last updated.' }, + }, + fromTimestamp: { + type: 'date', + _meta: { description: 'Time at which the metric was captured.' }, + }, + counterType: { type: 'keyword', _meta: { description: 'The type of counter used.' } }, + total: { + type: 'integer', + _meta: { description: 'The total number of times the event happened.' }, + }, }, }, }, diff --git a/src/plugins/kibana_usage_collection/server/collectors/ui_metric/schema.ts b/src/plugins/kibana_usage_collection/server/collectors/ui_metric/schema.ts index 6affbf4f54fa9..b64c23a2af289 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/ui_metric/schema.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/ui_metric/schema.ts @@ -12,8 +12,8 @@ import { UIMetricUsage } from './telemetry_ui_metric_collector'; const commonSchema: MakeSchemaFrom[string] = { type: 'array', items: { - key: { type: 'keyword' }, - value: { type: 'long' }, + key: { type: 'keyword', _meta: { description: 'The event that is tracked' } }, + value: { type: 'long', _meta: { description: 'The value of the event' } }, }, }; diff --git a/src/plugins/telemetry/schema/oss_plugins.json b/src/plugins/telemetry/schema/oss_plugins.json index ca869f7a7da88..e4cc9f0299771 100644 --- a/src/plugins/telemetry/schema/oss_plugins.json +++ b/src/plugins/telemetry/schema/oss_plugins.json @@ -83,68 +83,128 @@ "dashboards": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -154,68 +214,128 @@ "dev_tools": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -225,68 +345,128 @@ "discover": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -296,68 +476,128 @@ "home": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -367,68 +607,128 @@ "kibana": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -438,68 +738,128 @@ "management": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -509,68 +869,128 @@ "short_url_redirect": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -580,68 +1000,128 @@ "timelion": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -651,68 +1131,128 @@ "visualize": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -722,68 +1262,128 @@ "error": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -793,68 +1393,128 @@ "status": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -864,68 +1524,128 @@ "kibanaOverview": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -935,68 +1655,128 @@ "apm": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1006,68 +1786,128 @@ "canvas": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1077,68 +1917,128 @@ "dashboard_mode": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1148,68 +2048,128 @@ "enterpriseSearch": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1219,68 +2179,128 @@ "appSearch": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1290,68 +2310,128 @@ "workplaceSearch": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1361,68 +2441,128 @@ "graph": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1432,68 +2572,128 @@ "logs": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1503,68 +2703,128 @@ "metrics": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1574,68 +2834,128 @@ "infra": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1645,68 +2965,128 @@ "fleet": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1716,68 +3096,128 @@ "ingestManager": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1787,68 +3227,128 @@ "lens": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1858,68 +3358,128 @@ "maps": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -1929,68 +3489,128 @@ "ml": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2000,68 +3620,128 @@ "monitoring": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2071,68 +3751,128 @@ "observability-overview": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2142,68 +3882,128 @@ "security_account": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2213,68 +4013,128 @@ "security_access_agreement": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2284,68 +4144,128 @@ "security_capture_url": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2355,68 +4275,128 @@ "security_logged_out": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2426,68 +4406,128 @@ "security_login": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2497,68 +4537,128 @@ "security_logout": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2568,68 +4668,128 @@ "security_overwritten_session": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2639,68 +4799,128 @@ "securitySolution": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2710,68 +4930,128 @@ "securitySolution:overview": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2781,68 +5061,128 @@ "securitySolution:detections": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2852,68 +5192,128 @@ "securitySolution:hosts": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2923,68 +5323,128 @@ "securitySolution:network": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -2994,68 +5454,128 @@ "securitySolution:timelines": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -3065,68 +5585,128 @@ "securitySolution:case": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -3136,68 +5716,128 @@ "securitySolution:administration": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -3207,68 +5847,128 @@ "siem": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -3278,68 +5978,128 @@ "space_selector": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -3349,68 +6109,128 @@ "uptime": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -3420,68 +6240,128 @@ "ux": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Always `main`" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen over the last 90 days" + } }, "views": { "type": "array", "items": { "properties": { "appId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application being tracked" + } }, "viewId": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The application view being tracked" + } }, "clicks_total": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the application sub view since we started counting them" + } }, "clicks_7_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 7 days" + } }, "clicks_30_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 30 days" + } }, "clicks_90_days": { - "type": "long" + "type": "long", + "_meta": { + "description": "General number of clicks in the active application sub view over the last 90 days" + } }, "minutes_on_screen_total": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application sub view is active and on-screen since we started counting them." + } }, "minutes_on_screen_7_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 7 days" + } }, "minutes_on_screen_30_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 30 days" + } }, "minutes_on_screen_90_days": { - "type": "float" + "type": "float", + "_meta": { + "description": "Minutes the application is active and on-screen active application sub view over the last 90 days" + } } } } @@ -3497,149 +6377,266 @@ "elasticsearch": { "properties": { "sniffOnStart": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if an attempt should be made to find other Elasticsearch nodes on startup." + } }, "sniffIntervalMs": { - "type": "long" + "type": "long", + "_meta": { + "description": "Time in milliseconds between requests to check Elasticsearch for an updated list of nodes." + } }, "sniffOnConnectionFault": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if the list of Elasticsearch nodes should be updated immediately following a connection fault." + } }, "numberOfHostsConfigured": { - "type": "long" + "type": "long", + "_meta": { + "description": "Number of Elasticsearch instances configured to use for queries." + } }, "requestHeadersWhitelistConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if Kibana client-side headers to send to Elasticsearch is different to the default value." + } }, "customHeadersConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if any custom headers have been configured." + } }, "shardTimeoutMs": { - "type": "long" + "type": "long", + "_meta": { + "description": "Time in milliseconds for Elasticsearch to wait for responses from shards." + } }, "requestTimeoutMs": { - "type": "long" + "type": "long", + "_meta": { + "description": "Time in milliseconds to wait for responses from the back end or Elasticsearch." + } }, "pingTimeoutMs": { - "type": "long" + "type": "long", + "_meta": { + "description": "Time in milliseconds to wait for Elasticsearch to respond to pings." + } }, "logQueries": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if queries sent to Elasticsearch should be logged." + } }, "ssl": { "properties": { "verificationMode": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The verification of the server certificate that Kibana receives when making an outbound SSL or TLS connection to Elasticsearch" + } }, "certificateAuthoritiesConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if any PEM-encoded X.509 certificate authority certificates are configured." + } }, "certificateConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if a certificate authority is configured." + } }, "keyConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if a certificate key is configured." + } }, "keystoreConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if a keystore is configured." + } }, "truststoreConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if a path to a PKCS#12 trust store is configured." + } }, "alwaysPresentCertificate": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if a client certificate is presented when requested by Elasticsearch." + } } } }, "apiVersion": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Version of the Elasticsearch API used." + } }, "healthCheckDelayMs": { - "type": "long" + "type": "long", + "_meta": { + "description": "The interval in miliseconds between health check requests Kibana sends to the Elasticsearch." + } } } }, "http": { "properties": { "basePathConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if a base path has been configured." + } }, "maxPayloadInBytes": { - "type": "long" + "type": "long", + "_meta": { + "description": "Maximum payload size in bytes that is allowed." + } }, "rewriteBasePath": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if the base path should be rewritten." + } }, "keepaliveTimeout": { - "type": "long" + "type": "long", + "_meta": { + "description": "How long to keep sockets alive globally in milliseconds." + } }, "socketTimeout": { - "type": "long" + "type": "long", + "_meta": { + "description": "How long to wait before closing inactive sockets in milliseconds." + } }, "compression": { "properties": { "enabled": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if HTTP response compression is enabled." + } }, "referrerWhitelistConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if any responses should be compressed." + } } } }, "xsrf": { "properties": { "disableProtection": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if protection against xsrf should be disabled." + } }, "allowlistConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if any http headers have been whitelisted." + } } } }, "requestId": { "properties": { "allowFromAnyIp": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if any http headers have been whitelisted." + } }, "ipAllowlistConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if a list of specific IPs has been configured." + } } } }, "ssl": { "properties": { "certificateAuthoritiesConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if ssl certificate authorities have been configured." + } }, "certificateConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if an ssl certificate is configured." + } }, "cipherSuites": { "type": "array", "items": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The keyword of the cipher suite used." + } } }, "keyConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if an ssl key has been configured." + } }, "keystoreConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if an ssl keystore has been configured." + } }, "truststoreConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if a path to a PKCS#12 trust store is configured." + } }, "redirectHttpFromPortConfigured": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if a port to redirect all http requests has been configured." + } }, "supportedProtocols": { "type": "array", "items": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The version of a supported protocol used." + } } }, "clientAuthentication": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The behavior in Kibana for requesting a certificate from client connections." + } } } } @@ -3650,24 +6647,39 @@ "appendersTypesUsed": { "type": "array", "items": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The type of logging appender confgured." + } } }, "loggersConfiguredCount": { - "type": "long" + "type": "long", + "_meta": { + "description": "The total number of logging appenders configured." + } } } }, "savedObjects": { "properties": { "customIndex": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if the saved objects index is different to the standard internal .kibana index." + } }, "maxImportPayloadBytes": { - "type": "long" + "type": "long", + "_meta": { + "description": "Maximum size of the payload in bytes of saved objects that can be imported." + } }, "maxImportExportSizeBytes": { - "type": "long" + "type": "long", + "_meta": { + "description": "Maximum size in bytes of saved object that can be imported or exported." + } } } } @@ -3678,13 +6690,22 @@ "memory": { "properties": { "heapSizeLimit": { - "type": "long" + "type": "long", + "_meta": { + "description": "Host memory heap size limit." + } }, "heapTotalBytes": { - "type": "long" + "type": "long", + "_meta": { + "description": "Total memory heap size of host that is available in bytes." + } }, "heapUsedBytes": { - "type": "long" + "type": "long", + "_meta": { + "description": "Total memory heap size of host that is used in bytes." + } } } } @@ -3699,19 +6720,34 @@ "items": { "properties": { "docsCount": { - "type": "long" + "type": "long", + "_meta": { + "description": "The number of documents in the index, including hidden nested documents." + } }, "docsDeleted": { - "type": "long" + "type": "long", + "_meta": { + "description": "The number of deleted documents in the index, including hidden nested documents." + } }, "alias": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The alias used to map customized saved object index names to standard index names (.kibana or .kibana_task_manager)." + } }, "primaryStoreSizeBytes": { - "type": "long" + "type": "long", + "_meta": { + "description": "The size in bytes of the index, for primaries only." + } }, "storeSizeBytes": { - "type": "long" + "type": "long", + "_meta": { + "description": "The size in bytes of the index, for primaries and replicas." + } } } } @@ -3721,340 +6757,646 @@ } }, "apiCalls.savedObjectsBulkCreate.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsBulkCreate.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsBulkCreate.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsBulkCreate.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsBulkCreate.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsBulkCreate.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsBulkCreate.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsBulkGet.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsBulkGet.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsBulkGet.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsBulkGet.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsBulkGet.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsBulkGet.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsBulkGet.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsBulkUpdate.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsBulkUpdate.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsBulkUpdate.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsBulkUpdate.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsBulkUpdate.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsBulkUpdate.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsBulkUpdate.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsCreate.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsCreate.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsCreate.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsCreate.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsCreate.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsCreate.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsCreate.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsDelete.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsDelete.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsDelete.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsDelete.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsDelete.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsDelete.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsDelete.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsFind.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsFind.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsFind.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsFind.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsFind.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsFind.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsFind.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsGet.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsGet.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsGet.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsGet.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsGet.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsGet.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsGet.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsResolve.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsResolve.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsResolve.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsResolve.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsResolve.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsResolve.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsResolve.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsUpdate.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsUpdate.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsUpdate.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsUpdate.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsUpdate.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsUpdate.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsUpdate.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsImport.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsImport.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsImport.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsImport.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsImport.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsImport.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsImport.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsImport.createNewCopiesEnabled.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called with the `createNewCopiesEnabled` option." + } }, "apiCalls.savedObjectsImport.createNewCopiesEnabled.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called without the `createNewCopiesEnabled` option." + } }, "apiCalls.savedObjectsImport.overwriteEnabled.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called with the `overwrite` option." + } }, "apiCalls.savedObjectsImport.overwriteEnabled.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called without the `overwrite` option." + } }, "apiCalls.savedObjectsResolveImportErrors.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsResolveImportErrors.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsResolveImportErrors.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsResolveImportErrors.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsResolveImportErrors.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsResolveImportErrors.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsResolveImportErrors.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsResolveImportErrors.createNewCopiesEnabled.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called with the `createNewCopiesEnabled` option." + } }, "apiCalls.savedObjectsResolveImportErrors.createNewCopiesEnabled.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called without the `createNewCopiesEnabled` option." + } }, "apiCalls.savedObjectsExport.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called." + } }, "apiCalls.savedObjectsExport.namespace.default.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in the Default space." + } }, "apiCalls.savedObjectsExport.namespace.default.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in the Default space." + } }, "apiCalls.savedObjectsExport.namespace.default.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in the Default space." + } }, "apiCalls.savedObjectsExport.namespace.custom.total": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called in a custom space." + } }, "apiCalls.savedObjectsExport.namespace.custom.kibanaRequest.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by the Kibana client in a custom space." + } }, "apiCalls.savedObjectsExport.namespace.custom.kibanaRequest.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called by a non-Kibana client in a custom space." + } }, "apiCalls.savedObjectsExport.allTypesSelected.yes": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called with the `createNewCopiesEnabled` option." + } }, "apiCalls.savedObjectsExport.allTypesSelected.no": { - "type": "long" + "type": "long", + "_meta": { + "description": "How many times this API has been called without all types selected." + } } } }, "csp": { "properties": { "strict": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if strict mode should be used." + } }, "warnLegacyBrowsers": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if legacy browser versions should be warned." + } }, "rulesChangedFromDefault": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Indicates if the rules have been changed from the default." + } } } }, "kibana": { "properties": { "index": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The index storing the saved objects" + } }, "dashboard": { "properties": { "total": { - "type": "long" + "type": "long", + "_meta": { + "description": "Total number of dashboard saved objects" + } } } }, "visualization": { "properties": { "total": { - "type": "long" + "type": "long", + "_meta": { + "description": "Total number of visualization saved objects" + } } } }, "search": { "properties": { "total": { - "type": "long" + "type": "long", + "_meta": { + "description": "Total number of search saved objects" + } } } }, "index_pattern": { "properties": { "total": { - "type": "long" + "type": "long", + "_meta": { + "description": "Total number of index_pattern saved objects" + } } } }, "graph_workspace": { "properties": { "total": { - "type": "long" + "type": "long", + "_meta": { + "description": "Total number of graph_workspace saved objects" + } } } }, "timelion_sheet": { "properties": { "total": { - "type": "long" + "type": "long", + "_meta": { + "description": "Total number of timelion_sheet saved objects" + } } } } @@ -4063,330 +7405,639 @@ "localization": { "properties": { "locale": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The default locale set on the Kibana system" + } }, "integrities": { "properties": { "DYNAMIC_KEY": { - "type": "text" + "type": "text", + "_meta": { + "description": "Translation file hash. If the hash is different it indicates that a custom translation file is used" + } } } }, "labelsCount": { - "type": "long" + "type": "long", + "_meta": { + "description": "The number of translated labels" + } } } }, "stack_management": { "properties": { "timelion:quandl.key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Default value of the setting was changed." + } }, "securitySolution:defaultIndex": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Default value of the setting was changed." + } }, "securitySolution:newsFeedUrl": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Default value of the setting was changed." + } }, "xpackReporting:customPdfLogo": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Default value of the setting was changed." + } }, "notifications:banner": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Default value of the setting was changed." + } }, "timelion:graphite.url": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Default value of the setting changed." + } }, "xpackDashboardMode:roles": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Default value of the setting was changed." + } }, "securitySolution:ipReputationLinks": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Default value of the setting was changed." + } }, "xPack:defaultAdminEmail": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Default value of the setting was changed." + } }, "visualize:enableLabs": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "visualization:heatmap:maxBuckets": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "visualization:colorMapping": { - "type": "text" + "type": "text", + "_meta": { + "description": "Non-default value of setting." + } }, "visualization:regionmap:showWarnings": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "visualization:dimmingOpacity": { - "type": "float" + "type": "float", + "_meta": { + "description": "Non-default value of setting." + } }, "visualization:tileMap:maxPrecision": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "csv:separator": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "visualization:tileMap:WMSdefaults": { - "type": "text" + "type": "text", + "_meta": { + "description": "Non-default value of setting." + } }, "timelion:target_buckets": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "timelion:max_buckets": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "timelion:es.timefield": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "timelion:min_interval": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "timelion:default_rows": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "timelion:default_columns": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "timelion:es.default_index": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "timelion:showTutorial": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "securitySolution:timeDefaults": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "securitySolution:defaultAnomalyScore": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "securitySolution:refreshIntervalDefaults": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "securitySolution:enableNewsFeed": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "search:includeFrozen": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "courier:maxConcurrentShardRequests": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "courier:batchSearches": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "courier:setRequestPreference": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "courier:customRequestPreference": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "courier:ignoreFilterIfFieldNotInIndex": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "rollups:enableIndexPatterns": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "notifications:lifetime:warning": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "notifications:lifetime:banner": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "notifications:lifetime:info": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "notifications:lifetime:error": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "doc_table:highlight": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "discover:searchOnPageLoad": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "doc_table:hideTimeColumn": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "discover:sampleSize": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "defaultColumns": { "type": "array", "items": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } } }, "context:defaultSize": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "discover:aggs:terms:size": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "context:tieBreakerFields": { "type": "array", "items": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } } }, "discover:sort:defaultOrder": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "context:step": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "accessibility:disableAnimations": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "ml:fileDataVisualizerMaxFileSize": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "ml:anomalyDetection:results:enableTimeDefaults": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "ml:anomalyDetection:results:timeDefaults": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "truncate:maxHeight": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "timepicker:timeDefaults": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "timepicker:refreshIntervalDefaults": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "timepicker:quickRanges": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "theme:version": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "theme:darkMode": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "state:storeInSessionStorage": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "savedObjects:perPage": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "search:queryLanguage": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "shortDots:enable": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "sort:options": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "savedObjects:listingLimit": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "query:queryString:options": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "metrics:max_buckets": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "query:allowLeadingWildcards": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "metaFields": { "type": "array", "items": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } } }, "indexPattern:placeholder": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "histogram:barTarget": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "histogram:maxBars": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "format:number:defaultLocale": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "format:percent:defaultPattern": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "format:number:defaultPattern": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "history:limit": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "format:defaultTypeMap": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "format:currency:defaultPattern": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "defaultIndex": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "format:bytes:defaultPattern": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "filters:pinnedByDefault": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "filterEditor:suggestValues": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "fields:popularLimit": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "dateNanosFormat": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "defaultRoute": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "dateFormat:tz": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "dateFormat:scaled": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "csv:quoteValues": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "dateFormat:dow": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "dateFormat": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Non-default value of setting." + } }, "autocomplete:useTimeRange": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "search:timeout": { - "type": "long" + "type": "long", + "_meta": { + "description": "Non-default value of setting." + } }, "visualization:visualize:legacyChartsLibrary": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "doc_table:legacy": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "discover:modifyColumnsOnSwitch": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "discover:searchFieldsFromSource": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "securitySolution:rulesTableRefresh": { - "type": "text" + "type": "text", + "_meta": { + "description": "Non-default value of setting." + } }, "apm:enableSignificantTerms": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } }, "apm:enableServiceOverview": { - "type": "boolean" + "type": "boolean", + "_meta": { + "description": "Non-default value of setting." + } } } }, @@ -4397,22 +8048,40 @@ "items": { "properties": { "appName": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Name of the app reporting ui counts." + } }, "eventName": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "Name of the event that happened." + } }, "lastUpdatedAt": { - "type": "date" + "type": "date", + "_meta": { + "description": "Time at which the metric was last updated." + } }, "fromTimestamp": { - "type": "date" + "type": "date", + "_meta": { + "description": "Time at which the metric was captured." + } }, "counterType": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The type of counter used." + } }, "total": { - "type": "integer" + "type": "integer", + "_meta": { + "description": "The total number of times the event happened." + } } } } @@ -4426,10 +8095,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4439,10 +8114,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4452,10 +8133,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4465,10 +8152,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4478,10 +8171,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4491,10 +8190,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4504,10 +8209,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4517,10 +8228,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4530,10 +8247,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4543,10 +8266,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4556,10 +8285,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4569,10 +8304,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4582,10 +8323,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4595,10 +8342,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4608,10 +8361,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4621,10 +8380,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4634,10 +8399,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4647,10 +8418,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4660,10 +8437,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4673,10 +8456,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4686,10 +8475,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4699,10 +8494,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4712,10 +8513,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4725,10 +8532,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4738,10 +8551,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4751,10 +8570,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4764,10 +8589,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4777,10 +8608,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4790,10 +8627,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4803,10 +8646,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4816,10 +8665,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4829,10 +8684,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4842,10 +8703,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4855,10 +8722,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4868,10 +8741,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4881,10 +8760,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4894,10 +8779,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4907,10 +8798,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4920,10 +8817,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4933,10 +8836,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4946,10 +8855,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4959,10 +8874,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4972,10 +8893,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4985,10 +8912,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -4998,10 +8931,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5011,10 +8950,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5024,10 +8969,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5037,10 +8988,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5050,10 +9007,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5063,10 +9026,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5076,10 +9045,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5089,10 +9064,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5102,10 +9083,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5115,10 +9102,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5128,10 +9121,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5141,10 +9140,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } @@ -5154,10 +9159,16 @@ "items": { "properties": { "key": { - "type": "keyword" + "type": "keyword", + "_meta": { + "description": "The event that is tracked" + } }, "value": { - "type": "long" + "type": "long", + "_meta": { + "description": "The value of the event" + } } } } diff --git a/src/plugins/usage_collection/README.mdx b/src/plugins/usage_collection/README.mdx index 07ead377bf396..9516ff656f460 100644 --- a/src/plugins/usage_collection/README.mdx +++ b/src/plugins/usage_collection/README.mdx @@ -205,11 +205,23 @@ In the case of using a custom ES or SavedObjects client, it is up to the plugin ##### Schema Field -The `schema` field is a proscribed data model assists with detecting changes in usage collector payloads. To define the collector schema add a schema field that specifies every possible field reported (including optional fields) when registering the collector. Whenever the `schema` field is set or changed please run `node scripts/telemetry_check.js --fix` to update the stored schema json files. +The `schema` field is a proscribed data model assists with detecting changes in usage collector payloads. To define the collector schema add a schema field that specifies every possible field reported (including optional fields) when registering the collector. The schema supports descriptions as simple strings that allow developers to document what the data represents. The `_meta` field only supports a description property. +``` +schema: { + my_greeting: { + type: 'keyword', + _meta: { + description: 'The greeting keyword', + } + } +} +``` + +Whenever the `schema` field is set or changed please run `node scripts/telemetry_check.js --fix` to update the stored schema json files. ###### Allowed Schema Types -The `AllowedSchemaTypes` is the list of allowed schema types for the usage fields getting reported: +The `AllowedSchemaTypes` is the list of allowed schema types for the usage fields getting reported by the `fetch` method: ``` 'long', 'integer', 'short', 'byte', 'double', 'float', 'keyword', 'text', 'boolean', 'date' diff --git a/src/plugins/usage_collection/server/collector/collector.test.ts b/src/plugins/usage_collection/server/collector/collector.test.ts index 49c2ac18c7c52..fa3966f4f2d3c 100644 --- a/src/plugins/usage_collection/server/collector/collector.test.ts +++ b/src/plugins/usage_collection/server/collector/collector.test.ts @@ -167,5 +167,44 @@ describe('collector', () => { }); expect(collector).toBeDefined(); }); + + test('TS allows _meta.descriptions in schema', () => { + const collector = new Collector(logger, { + type: 'my_test_collector_with_description', + isReady: () => false, + fetch: () => ({ testPass: 100 }), + schema: { + testPass: { type: 'long' }, + _meta: { description: 'Count of testPass as number' }, + }, + }); + expect(collector).toBeDefined(); + }); + + test('schema allows _meta as a data field', () => { + const collector = new Collector(logger, { + type: 'my_test_collector_with_meta_field', + isReady: () => false, + fetch: () => ({ testPass: 100, _meta: 'metaData' }), + schema: { + testPass: { type: 'long' }, + _meta: { type: 'keyword' }, + }, + }); + expect(collector).toBeDefined(); + }); + + test('schema allows _meta as a data field that has a description', () => { + const collector = new Collector(logger, { + type: 'my_test_collector_with_meta_field', + isReady: () => false, + fetch: () => ({ testPass: 100, _meta: 'metaData' }), + schema: { + testPass: { type: 'long' }, + _meta: { type: 'keyword', _meta: { description: '_meta data as a keyword' } }, + }, + }); + expect(collector).toBeDefined(); + }); }); }); diff --git a/src/plugins/usage_collection/server/collector/collector.ts b/src/plugins/usage_collection/server/collector/collector.ts index 5f189479decfe..8e114df440cbe 100644 --- a/src/plugins/usage_collection/server/collector/collector.ts +++ b/src/plugins/usage_collection/server/collector/collector.ts @@ -45,7 +45,7 @@ export type PossibleSchemaTypes = U extends string export type RecursiveMakeSchemaFrom = U extends object ? MakeSchemaFrom - : { type: PossibleSchemaTypes }; + : { type: PossibleSchemaTypes; _meta?: { description: string } }; // Using Required to enforce all optional keys in the object export type MakeSchemaFrom = { diff --git a/x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json b/x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json index 527fb0fc040ae..4a0ab555f8f40 100644 --- a/x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json +++ b/x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json @@ -1667,6 +1667,19 @@ } } }, + "search-session": { + "properties": { + "transientCount": { + "type": "long" + }, + "persistedCount": { + "type": "long" + }, + "totalCount": { + "type": "long" + } + } + }, "discoverEnhanced": { "properties": { "exploreDataInChartActionEnabled": { @@ -3194,19 +3207,6 @@ } } }, - "search-session": { - "properties": { - "transientCount": { - "type": "long" - }, - "persistedCount": { - "type": "long" - }, - "totalCount": { - "type": "long" - } - } - }, "security_solution": { "properties": { "detections": {