From 62eba600d5f36c2c5ce2697fb4a466c215e7daf0 Mon Sep 17 00:00:00 2001 From: nnamdifrankie Date: Mon, 20 Apr 2020 14:27:33 -0400 Subject: [PATCH] EMT-146: remove metadata status test, it cross some boundaries --- .../api_integration/apis/endpoint/index.ts | 3 +- .../apis/endpoint/metadata_status.ts | 154 - .../endpoint_status_feature/data.json.gz | Bin 33797 -> 0 bytes .../endpoint_status_feature/mappings.json | 3255 ----------------- 4 files changed, 1 insertion(+), 3411 deletions(-) delete mode 100644 x-pack/test/api_integration/apis/endpoint/metadata_status.ts delete mode 100644 x-pack/test/functional/es_archives/endpoint/metadata/endpoint_status_feature/data.json.gz delete mode 100644 x-pack/test/functional/es_archives/endpoint/metadata/endpoint_status_feature/mappings.json diff --git a/x-pack/test/api_integration/apis/endpoint/index.ts b/x-pack/test/api_integration/apis/endpoint/index.ts index 8f9a31eab2e5c..0a5f9aa595b8a 100644 --- a/x-pack/test/api_integration/apis/endpoint/index.ts +++ b/x-pack/test/api_integration/apis/endpoint/index.ts @@ -13,13 +13,12 @@ export default function endpointAPIIntegrationTests({ describe('Endpoint plugin', function() { const ingestManager = getService('ingestManager'); this.tags(['endpoint']); - beforeEach(async () => { + before(async () => { await ingestManager.setup(); }); loadTestFile(require.resolve('./index_pattern')); loadTestFile(require.resolve('./resolver')); loadTestFile(require.resolve('./metadata')); - loadTestFile(require.resolve('./metadata_status')); loadTestFile(require.resolve('./alerts')); }); } diff --git a/x-pack/test/api_integration/apis/endpoint/metadata_status.ts b/x-pack/test/api_integration/apis/endpoint/metadata_status.ts deleted file mode 100644 index b5a0aa4b25f51..0000000000000 --- a/x-pack/test/api_integration/apis/endpoint/metadata_status.ts +++ /dev/null @@ -1,154 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License; - * you may not use this file except in compliance with the Elastic License. - */ - -import uuid from 'uuid'; -import expect from '@kbn/expect'; -import { FtrProviderContext } from '../../ftr_provider_context'; -import { getSupertestWithoutAuth } from '../fleet/agents/services'; - -export default function(providerContext: FtrProviderContext) { - const { getService } = providerContext; - const esArchiver = getService('esArchiver'); - const supertest = getService('supertest'); - const esClient = getService('es'); - const supertestWithoutAuth = getSupertestWithoutAuth(providerContext); - // agent that is enrolled and know to fleet - const enrolledAgentId = '94e689c0-81bd-11ea-a4eb-77680821cd3b'; - // host that is connected to enrolledAgentId - const enrolledHostId = '89ec7354-84a8-4f74-8d87-ba75f0994a17'; - // host that is not connected to an enrolled agent id - const notEnrolledHostId = 'bcf0d070-d9f2-40aa-8620-cbc004747722'; - - let apiKey: { id: string; api_key: string }; - - describe('test metadata api status', () => { - describe('/api/endpoint/metadata when index is not empty', () => { - beforeEach(async () => { - await esArchiver.loadIfNeeded('endpoint/metadata/endpoint_status_feature'); - const { body: apiKeyBody } = await esClient.security.createApiKey({ - body: { - name: `test access api key: ${uuid.v4()}`, - }, - }); - apiKey = apiKeyBody; - const { - body: { _source: agentDoc }, - } = await esClient.get({ - index: '.kibana', - id: `agents:${enrolledAgentId}`, - }); - - agentDoc.agents.access_api_key_id = apiKey.id; - - await esClient.update({ - index: '.kibana', - id: `agents:${enrolledAgentId}`, - refresh: 'true', - body: { - doc: agentDoc, - }, - }); - await getService('supertest') - .post(`/api/ingest_manager/setup`) - .set('kbn-xsrf', 'xxx') - .send(); - await getService('supertest') - .post(`/api/ingest_manager/fleet/setup`) - .set('kbn-xsrf', 'xxx'); - }); - - afterEach(async () => await esArchiver.unload('endpoint/metadata/endpoint_status_feature')); - - it('should return single metadata with status error when agent status is error', async () => { - const { body: metadataResponse } = await supertest - .get(`/api/endpoint/metadata/${enrolledHostId}`) - .expect(200); - expect(metadataResponse.host_status).to.be('error'); - }); - - it('should return single metadata with status error when agent is not enrolled', async () => { - const { body: metadataResponse } = await supertest - .get(`/api/endpoint/metadata/${notEnrolledHostId}`) - .expect(200); - expect(metadataResponse.host_status).to.be('error'); - }); - - it('should return metadata list with status error when no agent is not enrolled', async () => { - const { body } = await supertest - .post('/api/endpoint/metadata') - .set('kbn-xsrf', 'xxx') - .expect(200); - expect(body.total).to.eql(2); - expect(body.hosts.length).to.eql(2); - const enrolledHost = body.hosts.filter( - (hostInfo: Record) => hostInfo.metadata.host.id === enrolledHostId - ); - const notEnrolledHost = body.hosts.filter( - (hostInfo: Record) => hostInfo.metadata.host.id === notEnrolledHostId - ); - expect(enrolledHost.host_status === 'error'); - expect(notEnrolledHost.host_status === 'error'); - }); - - it('should return single metadata with status online when agent status is online', async () => { - const { body: checkInResponse } = await supertestWithoutAuth - .post(`/api/ingest_manager/fleet/agents/${enrolledAgentId}/checkin`) - .set('kbn-xsrf', 'xx') - .set( - 'Authorization', - `ApiKey ${Buffer.from(`${apiKey.id}:${apiKey.api_key}`).toString('base64')}` - ) - .send({ - events: [], - local_metadata: {}, - }) - .expect(200); - - expect(checkInResponse.action).to.be('checkin'); - expect(checkInResponse.success).to.be(true); - - const { body: metadataResponse } = await supertest - .get(`/api/endpoint/metadata/${enrolledHostId}`) - .set('kbn-xsrf', 'xxx') - .expect(200); - expect(metadataResponse.host_status).to.be('online'); - }); - - it('should return metadata list with status only when agent is checked in', async () => { - const { body: checkInResponse } = await supertestWithoutAuth - .post(`/api/ingest_manager/fleet/agents/${enrolledAgentId}/checkin`) - .set('kbn-xsrf', 'xx') - .set( - 'Authorization', - `ApiKey ${Buffer.from(`${apiKey.id}:${apiKey.api_key}`).toString('base64')}` - ) - .send({ - events: [], - local_metadata: {}, - }) - .expect(200); - - expect(checkInResponse.action).to.be('checkin'); - expect(checkInResponse.success).to.be(true); - - const { body } = await supertest - .post('/api/endpoint/metadata') - .set('kbn-xsrf', 'xxx') - .expect(200); - expect(body.total).to.eql(2); - expect(body.hosts.length).to.eql(2); - const enrolledHost = body.hosts.filter( - (hostInfo: Record) => hostInfo.metadata.host.id === enrolledHostId - ); - const notEnrolledHost = body.hosts.filter( - (hostInfo: Record) => hostInfo.metadata.host.id === notEnrolledHostId - ); - expect(enrolledHost.host_status === 'online'); - expect(notEnrolledHost.host_status === 'error'); - }); - }); - }); -} diff --git a/x-pack/test/functional/es_archives/endpoint/metadata/endpoint_status_feature/data.json.gz b/x-pack/test/functional/es_archives/endpoint/metadata/endpoint_status_feature/data.json.gz deleted file mode 100644 index 00b2fcbd7f617f87421fcf695a17165b5020898a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 33797 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 diff --git a/x-pack/test/functional/es_archives/endpoint/metadata/endpoint_status_feature/mappings.json b/x-pack/test/functional/es_archives/endpoint/metadata/endpoint_status_feature/mappings.json deleted file mode 100644 index dbf6f0ad34023..0000000000000 --- a/x-pack/test/functional/es_archives/endpoint/metadata/endpoint_status_feature/mappings.json +++ /dev/null @@ -1,3255 +0,0 @@ -{ - "type": "index", - "value": { - "aliases": { - }, - "index": "metrics-endpoint-default-1", - "mappings": { - "_meta": { - "package": "foo", - "version": "1.6.0-dev" - }, - "date_detection": false, - "dynamic_templates": [ - { - "strings_as_keyword": { - "mapping": { - "ignore_above": 1024, - "type": "keyword" - }, - "match_mapping_type": "string" - } - } - ], - "properties": { - "@timestamp": { - "type": "date" - }, - "agent": { - "properties": { - "ephemeral_id": { - "ignore_above": 1024, - "type": "keyword" - }, - "hostname": { - "ignore_above": 1024, - "type": "keyword" - }, - "id": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "type": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "ecs": { - "properties": { - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "elastic": { - "properties": { - "agent": { - "properties": { - "id": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - }, - "endpoint": { - "properties": { - "policy": { - "properties": { - "id": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - }, - "event": { - "properties": { - "created": { - "type": "date" - } - } - }, - "host": { - "properties": { - "architecture": { - "ignore_above": 1024, - "type": "keyword" - }, - "containerized": { - "type": "boolean" - }, - "hostname": { - "ignore_above": 1024, - "type": "keyword" - }, - "id": { - "ignore_above": 1024, - "type": "keyword" - }, - "ip": { - "type": "ip" - }, - "mac": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "os": { - "properties": { - "build": { - "ignore_above": 1024, - "type": "keyword" - }, - "codename": { - "ignore_above": 1024, - "type": "keyword" - }, - "family": { - "ignore_above": 1024, - "type": "keyword" - }, - "full": { - "fields": { - "text": { - "norms": false, - "type": "text" - } - }, - "ignore_above": 1024, - "type": "keyword" - }, - "kernel": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "fields": { - "text": { - "norms": false, - "type": "text" - } - }, - "ignore_above": 1024, - "type": "keyword" - }, - "platform": { - "ignore_above": 1024, - "type": "keyword" - }, - "variant": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "type": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "stream": { - "properties": { - "dataset": { - "type": "constant_keyword" - }, - "namespace": { - "type": "constant_keyword" - }, - "type": { - "type": "constant_keyword" - } - } - } - } - }, - "settings": { - "index": { - "codec": "best_compression", - "lifecycle": { - "name": "metrics-default" - }, - "mapping": { - "total_fields": { - "limit": "10000" - } - }, - "number_of_replicas": "1", - "number_of_shards": "1", - "query": { - "default_field": [ - "message" - ] - }, - "refresh_interval": "5s" - } - } - } -} - -{ - "type": "index", - "value": { - "aliases": { - ".kibana": { - } - }, - "index": ".kibana_1", - "mappings": { - "_meta": { - "migrationMappingPropertyHashes": { - "action": "6e96ac5e648f57523879661ea72525b7", - "action_task_params": "a9d49f184ee89641044be0ca2950fa3a", - "agent_actions": "ed270b46812f0fa1439366c428a2cf17", - "agent_configs": "38abaf89513877745c359e7700c0c66a", - "agent_events": "3231653fafe4ef3196fe3b32ab774bf2", - "agents": "c3eeb7b9d97176f15f6d126370ab23c7", - "alert": "7b44fba6773e37c806ce290ea9b7024e", - "apm-indices": "9bb9b2bf1fa636ed8619cbab5ce6a1dd", - "apm-telemetry": "3525d7c22c42bc80f5e6e9cb3f2b26a2", - "application_usage_totals": "c897e4310c5f24b07caaff3db53ae2c1", - "application_usage_transactional": "965839e75f809fefe04f92dc4d99722a", - "canvas-element": "7390014e1091044523666d97247392fc", - "canvas-workpad": "b0a1706d356228dbdcb4a17e6b9eb231", - "cases": "08b8b110dbca273d37e8aef131ecab61", - "cases-comments": "c2061fb929f585df57425102fa928b4b", - "cases-configure": "42711cbb311976c0687853f4c1354572", - "cases-user-actions": "32277330ec6b721abe3b846cfd939a71", - "config": "ae24d22d5986d04124cc6568f771066f", - "dashboard": "d00f614b29a80360e1190193fd333bab", - "datasources": "624d2ef3babbfa18022829c795ca354e", - "enrollment_api_keys": "28b91e20b105b6f928e2012600085d8f", - "epm-package": "50720890bcdafad30643bcee8a32098b", - "file-upload-telemetry": "0ed4d3e1983d1217a30982630897092e", - "graph-workspace": "cd7ba1330e6682e9cc00b78850874be1", - "index-pattern": "66eccb05066c5a89924f48a9e9736499", - "infrastructure-ui-source": "ddc0ecb18383f6b26101a2fadb2dab0c", - "inventory-view": "5299b67717e96502c77babf1c16fd4d3", - "kql-telemetry": "d12a98a6f19a2d273696597547e064ee", - "lens": "21c3ea0763beb1ecb0162529706b88c5", - "lens-ui-telemetry": "509bfa5978586998e05f9e303c07a327", - "map": "23d7aa4a720d4938ccde3983f87bd58d", - "maps-telemetry": "268da3a48066123fc5baf35abaa55014", - "metrics-explorer-view": "53c5365793677328df0ccb6138bf3cdd", - "migrationVersion": "4a1746014a75ade3a714e1db5763276f", - "ml-telemetry": "257fd1d4b4fdbb9cb4b8a3b27da201e9", - "namespace": "2f4316de49999235636386fe51dc06c1", - "namespaces": "2f4316de49999235636386fe51dc06c1", - "outputs": "aee9782e0d500b867859650a36280165", - "query": "11aaeb7f5f7fa5bb43f25e18ce26e7d9", - "references": "7997cf5a56cc02bdc9c93361bde732b0", - "sample-data-telemetry": "7d3cfeb915303c9641c59681967ffeb4", - "search": "181661168bbadd1eff5902361e2a0d5c", - "server": "ec97f1c5da1a19609a60874e5af1100c", - "siem-detection-engine-rule-actions": "90eee2e4635260f4be0a1da8f5bc0aa0", - "siem-detection-engine-rule-status": "ae783f41c6937db6b7a2ef5c93a9e9b0", - "siem-ui-timeline": "ac8020190f5950dd3250b6499144e7fb", - "siem-ui-timeline-note": "8874706eedc49059d4cf0f5094559084", - "siem-ui-timeline-pinned-event": "20638091112f0e14f0e443d512301c29", - "space": "c5ca8acafa0beaa4d08d014a97b6bc6b", - "telemetry": "36a616f7026dfa617d6655df850fe16d", - "timelion-sheet": "9a2a2748877c7a7b582fef201ab1d4cf", - "tsvb-validation-telemetry": "3a37ef6c8700ae6fc97d5c7da00e9215", - "type": "2f4316de49999235636386fe51dc06c1", - "ui-metric": "0d409297dc5ebe1e3a1da691c6ee32e3", - "updated_at": "00da57df13e94e9d98437d13ace4bfe0", - "upgrade-assistant-reindex-operation": "a53a20fe086b72c9a86da3cc12dad8a6", - "upgrade-assistant-telemetry": "56702cec857e0a9dacfb696655b4ff7b", - "uptime-dynamic-settings": "07a4a5d2952aa47b4528b9d462ac256e", - "url": "c7f66a0df8b1b52f17c28c4adb111105", - "visualization": "52d7a13ad68a150c4525b292d23e12cc" - } - }, - "dynamic": "strict", - "properties": { - "action": { - "properties": { - "actionTypeId": { - "type": "keyword" - }, - "config": { - "enabled": false, - "type": "object" - }, - "name": { - "fields": { - "keyword": { - "type": "keyword" - } - }, - "type": "text" - }, - "secrets": { - "type": "binary" - } - } - }, - "action_task_params": { - "properties": { - "actionId": { - "type": "keyword" - }, - "apiKey": { - "type": "binary" - }, - "params": { - "enabled": false, - "type": "object" - } - } - }, - "agent_actions": { - "properties": { - "agent_id": { - "type": "keyword" - }, - "created_at": { - "type": "date" - }, - "data": { - "type": "flattened" - }, - "sent_at": { - "type": "date" - }, - "type": { - "type": "keyword" - } - } - }, - "agent_configs": { - "properties": { - "datasources": { - "type": "keyword" - }, - "description": { - "type": "text" - }, - "id": { - "type": "keyword" - }, - "is_default": { - "type": "boolean" - }, - "name": { - "type": "text" - }, - "namespace": { - "type": "keyword" - }, - "revision": { - "type": "integer" - }, - "status": { - "type": "keyword" - }, - "updated_by": { - "type": "keyword" - }, - "updated_on": { - "type": "keyword" - } - } - }, - "agent_events": { - "properties": { - "action_id": { - "type": "keyword" - }, - "agent_id": { - "type": "keyword" - }, - "config_id": { - "type": "keyword" - }, - "data": { - "type": "text" - }, - "message": { - "type": "text" - }, - "payload": { - "type": "text" - }, - "stream_id": { - "type": "keyword" - }, - "subtype": { - "type": "keyword" - }, - "timestamp": { - "type": "date" - }, - "type": { - "type": "keyword" - } - } - }, - "agents": { - "properties": { - "access_api_key_id": { - "type": "keyword" - }, - "active": { - "type": "boolean" - }, - "config_id": { - "type": "keyword" - }, - "config_newest_revision": { - "type": "integer" - }, - "config_revision": { - "type": "integer" - }, - "current_error_events": { - "type": "text" - }, - "default_api_key": { - "type": "keyword" - }, - "enrolled_at": { - "type": "date" - }, - "last_checkin": { - "type": "date" - }, - "last_updated": { - "type": "date" - }, - "local_metadata": { - "type": "text" - }, - "shared_id": { - "type": "keyword" - }, - "type": { - "type": "keyword" - }, - "updated_at": { - "type": "date" - }, - "user_provided_metadata": { - "type": "text" - }, - "version": { - "type": "keyword" - } - } - }, - "alert": { - "properties": { - "actions": { - "properties": { - "actionRef": { - "type": "keyword" - }, - "actionTypeId": { - "type": "keyword" - }, - "group": { - "type": "keyword" - }, - "params": { - "enabled": false, - "type": "object" - } - }, - "type": "nested" - }, - "alertTypeId": { - "type": "keyword" - }, - "apiKey": { - "type": "binary" - }, - "apiKeyOwner": { - "type": "keyword" - }, - "consumer": { - "type": "keyword" - }, - "createdAt": { - "type": "date" - }, - "createdBy": { - "type": "keyword" - }, - "enabled": { - "type": "boolean" - }, - "muteAll": { - "type": "boolean" - }, - "mutedInstanceIds": { - "type": "keyword" - }, - "name": { - "fields": { - "keyword": { - "type": "keyword" - } - }, - "type": "text" - }, - "params": { - "enabled": false, - "type": "object" - }, - "schedule": { - "properties": { - "interval": { - "type": "keyword" - } - } - }, - "scheduledTaskId": { - "type": "keyword" - }, - "tags": { - "type": "keyword" - }, - "throttle": { - "type": "keyword" - }, - "updatedBy": { - "type": "keyword" - } - } - }, - "apm-indices": { - "properties": { - "apm_oss": { - "properties": { - "errorIndices": { - "type": "keyword" - }, - "metricsIndices": { - "type": "keyword" - }, - "onboardingIndices": { - "type": "keyword" - }, - "sourcemapIndices": { - "type": "keyword" - }, - "spanIndices": { - "type": "keyword" - }, - "transactionIndices": { - "type": "keyword" - } - } - } - } - }, - "apm-telemetry": { - "properties": { - "agents": { - "properties": { - "dotnet": { - "properties": { - "agent": { - "properties": { - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "service": { - "properties": { - "framework": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "language": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "runtime": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - } - } - }, - "go": { - "properties": { - "agent": { - "properties": { - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "service": { - "properties": { - "framework": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "language": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "runtime": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - } - } - }, - "java": { - "properties": { - "agent": { - "properties": { - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "service": { - "properties": { - "framework": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "language": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "runtime": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - } - } - }, - "js-base": { - "properties": { - "agent": { - "properties": { - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "service": { - "properties": { - "framework": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "language": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "runtime": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - } - } - }, - "nodejs": { - "properties": { - "agent": { - "properties": { - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "service": { - "properties": { - "framework": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "language": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "runtime": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - } - } - }, - "python": { - "properties": { - "agent": { - "properties": { - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "service": { - "properties": { - "framework": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "language": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "runtime": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - } - } - }, - "ruby": { - "properties": { - "agent": { - "properties": { - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "service": { - "properties": { - "framework": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "language": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "runtime": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - } - } - }, - "rum-js": { - "properties": { - "agent": { - "properties": { - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "service": { - "properties": { - "framework": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "language": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - }, - "runtime": { - "properties": { - "composite": { - "ignore_above": 1024, - "type": "keyword" - }, - "name": { - "ignore_above": 1024, - "type": "keyword" - }, - "version": { - "ignore_above": 1024, - "type": "keyword" - } - } - } - } - } - } - } - } - }, - "cardinality": { - "properties": { - "transaction": { - "properties": { - "name": { - "properties": { - "all_agents": { - "properties": { - "1d": { - "type": "long" - } - } - }, - "rum": { - "properties": { - "1d": { - "type": "long" - } - } - } - } - } - } - }, - "user_agent": { - "properties": { - "original": { - "properties": { - "all_agents": { - "properties": { - "1d": { - "type": "long" - } - } - }, - "rum": { - "properties": { - "1d": { - "type": "long" - } - } - } - } - } - } - } - } - }, - "counts": { - "properties": { - "agent_configuration": { - "properties": { - "all": { - "type": "long" - } - } - }, - "error": { - "properties": { - "1d": { - "type": "long" - }, - "all": { - "type": "long" - } - } - }, - "max_error_groups_per_service": { - "properties": { - "1d": { - "type": "long" - } - } - }, - "max_transaction_groups_per_service": { - "properties": { - "1d": { - "type": "long" - } - } - }, - "metric": { - "properties": { - "1d": { - "type": "long" - }, - "all": { - "type": "long" - } - } - }, - "onboarding": { - "properties": { - "1d": { - "type": "long" - }, - "all": { - "type": "long" - } - } - }, - "services": { - "properties": { - "1d": { - "type": "long" - } - } - }, - "sourcemap": { - "properties": { - "1d": { - "type": "long" - }, - "all": { - "type": "long" - } - } - }, - "span": { - "properties": { - "1d": { - "type": "long" - }, - "all": { - "type": "long" - } - } - }, - "traces": { - "properties": { - "1d": { - "type": "long" - } - } - }, - "transaction": { - "properties": { - "1d": { - "type": "long" - }, - "all": { - "type": "long" - } - } - } - } - }, - "has_any_services": { - "type": "boolean" - }, - "indices": { - "properties": { - "all": { - "properties": { - "total": { - "properties": { - "docs": { - "properties": { - "count": { - "type": "long" - } - } - }, - "store": { - "properties": { - "size_in_bytes": { - "type": "long" - } - } - } - } - } - } - }, - "shards": { - "properties": { - "total": { - "type": "long" - } - } - } - } - }, - "integrations": { - "properties": { - "ml": { - "properties": { - "all_jobs_count": { - "type": "long" - } - } - } - } - }, - "retainment": { - "properties": { - "error": { - "properties": { - "ms": { - "type": "long" - } - } - }, - "metric": { - "properties": { - "ms": { - "type": "long" - } - } - }, - "onboarding": { - "properties": { - "ms": { - "type": "long" - } - } - }, - "span": { - "properties": { - "ms": { - "type": "long" - } - } - }, - "transaction": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - }, - "services_per_agent": { - "properties": { - "dotnet": { - "null_value": 0, - "type": "long" - }, - "go": { - "null_value": 0, - "type": "long" - }, - "java": { - "null_value": 0, - "type": "long" - }, - "js-base": { - "null_value": 0, - "type": "long" - }, - "nodejs": { - "null_value": 0, - "type": "long" - }, - "python": { - "null_value": 0, - "type": "long" - }, - "ruby": { - "null_value": 0, - "type": "long" - }, - "rum-js": { - "null_value": 0, - "type": "long" - } - } - }, - "tasks": { - "properties": { - "agent_configuration": { - "properties": { - "took": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - }, - "agents": { - "properties": { - "took": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - }, - "cardinality": { - "properties": { - "took": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - }, - "groupings": { - "properties": { - "took": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - }, - "indices_stats": { - "properties": { - "took": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - }, - "integrations": { - "properties": { - "took": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - }, - "processor_events": { - "properties": { - "took": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - }, - "services": { - "properties": { - "took": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - }, - "versions": { - "properties": { - "took": { - "properties": { - "ms": { - "type": "long" - } - } - } - } - } - } - }, - "version": { - "properties": { - "apm_server": { - "properties": { - "major": { - "type": "long" - }, - "minor": { - "type": "long" - }, - "patch": { - "type": "long" - } - } - } - } - } - } - }, - "application_usage_totals": { - "properties": { - "appId": { - "type": "keyword" - }, - "minutesOnScreen": { - "type": "float" - }, - "numberOfClicks": { - "type": "long" - } - } - }, - "application_usage_transactional": { - "properties": { - "appId": { - "type": "keyword" - }, - "minutesOnScreen": { - "type": "float" - }, - "numberOfClicks": { - "type": "long" - }, - "timestamp": { - "type": "date" - } - } - }, - "canvas-element": { - "dynamic": "false", - "properties": { - "@created": { - "type": "date" - }, - "@timestamp": { - "type": "date" - }, - "content": { - "type": "text" - }, - "help": { - "type": "text" - }, - "image": { - "type": "text" - }, - "name": { - "fields": { - "keyword": { - "type": "keyword" - } - }, - "type": "text" - } - } - }, - "canvas-workpad": { - "dynamic": "false", - "properties": { - "@created": { - "type": "date" - }, - "@timestamp": { - "type": "date" - }, - "name": { - "fields": { - "keyword": { - "type": "keyword" - } - }, - "type": "text" - } - } - }, - "cases": { - "properties": { - "closed_at": { - "type": "date" - }, - "closed_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - }, - "created_at": { - "type": "date" - }, - "created_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - }, - "description": { - "type": "text" - }, - "external_service": { - "properties": { - "connector_id": { - "type": "keyword" - }, - "connector_name": { - "type": "keyword" - }, - "external_id": { - "type": "keyword" - }, - "external_title": { - "type": "text" - }, - "external_url": { - "type": "text" - }, - "pushed_at": { - "type": "date" - }, - "pushed_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - } - } - }, - "status": { - "type": "keyword" - }, - "tags": { - "type": "keyword" - }, - "title": { - "type": "keyword" - }, - "updated_at": { - "type": "date" - }, - "updated_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - } - } - }, - "cases-comments": { - "properties": { - "comment": { - "type": "text" - }, - "created_at": { - "type": "date" - }, - "created_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - }, - "pushed_at": { - "type": "date" - }, - "pushed_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - }, - "updated_at": { - "type": "date" - }, - "updated_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - } - } - }, - "cases-configure": { - "properties": { - "closure_type": { - "type": "keyword" - }, - "connector_id": { - "type": "keyword" - }, - "connector_name": { - "type": "keyword" - }, - "created_at": { - "type": "date" - }, - "created_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - }, - "updated_at": { - "type": "date" - }, - "updated_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - } - } - }, - "cases-user-actions": { - "properties": { - "action": { - "type": "keyword" - }, - "action_at": { - "type": "date" - }, - "action_by": { - "properties": { - "email": { - "type": "keyword" - }, - "full_name": { - "type": "keyword" - }, - "username": { - "type": "keyword" - } - } - }, - "action_field": { - "type": "keyword" - }, - "new_value": { - "type": "text" - }, - "old_value": { - "type": "text" - } - } - }, - "config": { - "dynamic": "true", - "properties": { - "buildNum": { - "type": "keyword" - } - } - }, - "dashboard": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "optionsJSON": { - "type": "text" - }, - "panelsJSON": { - "type": "text" - }, - "refreshInterval": { - "properties": { - "display": { - "type": "keyword" - }, - "pause": { - "type": "boolean" - }, - "section": { - "type": "integer" - }, - "value": { - "type": "integer" - } - } - }, - "timeFrom": { - "type": "keyword" - }, - "timeRestore": { - "type": "boolean" - }, - "timeTo": { - "type": "keyword" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, - "datasources": { - "properties": { - "config_id": { - "type": "keyword" - }, - "description": { - "type": "text" - }, - "enabled": { - "type": "boolean" - }, - "inputs": { - "properties": { - "config": { - "type": "flattened" - }, - "enabled": { - "type": "boolean" - }, - "processors": { - "type": "keyword" - }, - "streams": { - "properties": { - "config": { - "type": "flattened" - }, - "dataset": { - "type": "keyword" - }, - "enabled": { - "type": "boolean" - }, - "id": { - "type": "keyword" - }, - "pkg_stream": { - "type": "flattened" - }, - "processors": { - "type": "keyword" - } - }, - "type": "nested" - }, - "type": { - "type": "keyword" - } - }, - "type": "nested" - }, - "name": { - "type": "keyword" - }, - "namespace": { - "type": "keyword" - }, - "output_id": { - "type": "keyword" - }, - "package": { - "properties": { - "name": { - "type": "keyword" - }, - "title": { - "type": "keyword" - }, - "version": { - "type": "keyword" - } - } - }, - "revision": { - "type": "integer" - } - } - }, - "enrollment_api_keys": { - "properties": { - "active": { - "type": "boolean" - }, - "api_key": { - "type": "binary" - }, - "api_key_id": { - "type": "keyword" - }, - "config_id": { - "type": "keyword" - }, - "created_at": { - "type": "date" - }, - "expire_at": { - "type": "date" - }, - "name": { - "type": "keyword" - }, - "type": { - "type": "keyword" - }, - "updated_at": { - "type": "date" - } - } - }, - "epm-package": { - "properties": { - "es_index_patterns": { - "dynamic": "false", - "type": "object" - }, - "installed": { - "properties": { - "id": { - "type": "keyword" - }, - "type": { - "type": "keyword" - } - }, - "type": "nested" - }, - "internal": { - "type": "boolean" - }, - "name": { - "type": "keyword" - }, - "version": { - "type": "keyword" - } - } - }, - "file-upload-telemetry": { - "properties": { - "filesUploadedTotalCount": { - "type": "long" - } - } - }, - "graph-workspace": { - "properties": { - "description": { - "type": "text" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "numLinks": { - "type": "integer" - }, - "numVertices": { - "type": "integer" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - }, - "wsState": { - "type": "text" - } - } - }, - "index-pattern": { - "properties": { - "fieldFormatMap": { - "type": "text" - }, - "fields": { - "type": "text" - }, - "intervalName": { - "type": "keyword" - }, - "notExpandable": { - "type": "boolean" - }, - "sourceFilters": { - "type": "text" - }, - "timeFieldName": { - "type": "keyword" - }, - "title": { - "type": "text" - }, - "type": { - "type": "keyword" - }, - "typeMeta": { - "type": "keyword" - } - } - }, - "infrastructure-ui-source": { - "properties": { - "description": { - "type": "text" - }, - "fields": { - "properties": { - "container": { - "type": "keyword" - }, - "host": { - "type": "keyword" - }, - "pod": { - "type": "keyword" - }, - "tiebreaker": { - "type": "keyword" - }, - "timestamp": { - "type": "keyword" - } - } - }, - "logAlias": { - "type": "keyword" - }, - "logColumns": { - "properties": { - "fieldColumn": { - "properties": { - "field": { - "type": "keyword" - }, - "id": { - "type": "keyword" - } - } - }, - "messageColumn": { - "properties": { - "id": { - "type": "keyword" - } - } - }, - "timestampColumn": { - "properties": { - "id": { - "type": "keyword" - } - } - } - }, - "type": "nested" - }, - "metricAlias": { - "type": "keyword" - }, - "name": { - "type": "text" - } - } - }, - "inventory-view": { - "properties": { - "accountId": { - "type": "keyword" - }, - "autoBounds": { - "type": "boolean" - }, - "autoReload": { - "type": "boolean" - }, - "boundsOverride": { - "properties": { - "max": { - "type": "integer" - }, - "min": { - "type": "integer" - } - } - }, - "customMetrics": { - "properties": { - "aggregation": { - "type": "keyword" - }, - "field": { - "type": "keyword" - }, - "id": { - "type": "keyword" - }, - "label": { - "type": "keyword" - }, - "type": { - "type": "keyword" - } - }, - "type": "nested" - }, - "customOptions": { - "properties": { - "field": { - "type": "keyword" - }, - "text": { - "type": "keyword" - } - }, - "type": "nested" - }, - "filterQuery": { - "properties": { - "expression": { - "type": "keyword" - }, - "kind": { - "type": "keyword" - } - } - }, - "groupBy": { - "properties": { - "field": { - "type": "keyword" - }, - "label": { - "type": "keyword" - } - }, - "type": "nested" - }, - "metric": { - "properties": { - "aggregation": { - "type": "keyword" - }, - "field": { - "type": "keyword" - }, - "id": { - "type": "keyword" - }, - "label": { - "type": "keyword" - }, - "type": { - "type": "keyword" - } - } - }, - "name": { - "type": "keyword" - }, - "nodeType": { - "type": "keyword" - }, - "region": { - "type": "keyword" - }, - "time": { - "type": "long" - }, - "view": { - "type": "keyword" - } - } - }, - "kql-telemetry": { - "properties": { - "optInCount": { - "type": "long" - }, - "optOutCount": { - "type": "long" - } - } - }, - "lens": { - "properties": { - "expression": { - "index": false, - "type": "keyword" - }, - "state": { - "type": "flattened" - }, - "title": { - "type": "text" - }, - "visualizationType": { - "type": "keyword" - } - } - }, - "lens-ui-telemetry": { - "properties": { - "count": { - "type": "integer" - }, - "date": { - "type": "date" - }, - "name": { - "type": "keyword" - }, - "type": { - "type": "keyword" - } - } - }, - "map": { - "properties": { - "bounds": { - "type": "geo_shape" - }, - "description": { - "type": "text" - }, - "layerListJSON": { - "type": "text" - }, - "mapStateJSON": { - "type": "text" - }, - "title": { - "type": "text" - }, - "uiStateJSON": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, - "maps-telemetry": { - "properties": { - "attributesPerMap": { - "properties": { - "dataSourcesCount": { - "properties": { - "avg": { - "type": "long" - }, - "max": { - "type": "long" - }, - "min": { - "type": "long" - } - } - }, - "emsVectorLayersCount": { - "dynamic": "true", - "type": "object" - }, - "layerTypesCount": { - "dynamic": "true", - "type": "object" - }, - "layersCount": { - "properties": { - "avg": { - "type": "long" - }, - "max": { - "type": "long" - }, - "min": { - "type": "long" - } - } - } - } - }, - "indexPatternsWithGeoFieldCount": { - "type": "long" - }, - "mapsTotalCount": { - "type": "long" - }, - "settings": { - "properties": { - "showMapVisualizationTypes": { - "type": "boolean" - } - } - }, - "timeCaptured": { - "type": "date" - } - } - }, - "metrics-explorer-view": { - "properties": { - "chartOptions": { - "properties": { - "stack": { - "type": "boolean" - }, - "type": { - "type": "keyword" - }, - "yAxisMode": { - "type": "keyword" - } - } - }, - "currentTimerange": { - "properties": { - "from": { - "type": "keyword" - }, - "interval": { - "type": "keyword" - }, - "to": { - "type": "keyword" - } - } - }, - "name": { - "type": "keyword" - }, - "options": { - "properties": { - "aggregation": { - "type": "keyword" - }, - "filterQuery": { - "type": "keyword" - }, - "groupBy": { - "type": "keyword" - }, - "limit": { - "type": "integer" - }, - "metrics": { - "properties": { - "aggregation": { - "type": "keyword" - }, - "color": { - "type": "keyword" - }, - "field": { - "type": "keyword" - }, - "label": { - "type": "keyword" - } - }, - "type": "nested" - } - } - } - } - }, - "migrationVersion": { - "dynamic": "true", - "properties": { - "dashboard": { - "fields": { - "keyword": { - "ignore_above": 256, - "type": "keyword" - } - }, - "type": "text" - }, - "index-pattern": { - "fields": { - "keyword": { - "ignore_above": 256, - "type": "keyword" - } - }, - "type": "text" - }, - "map": { - "fields": { - "keyword": { - "ignore_above": 256, - "type": "keyword" - } - }, - "type": "text" - }, - "search": { - "fields": { - "keyword": { - "ignore_above": 256, - "type": "keyword" - } - }, - "type": "text" - }, - "space": { - "fields": { - "keyword": { - "ignore_above": 256, - "type": "keyword" - } - }, - "type": "text" - }, - "visualization": { - "fields": { - "keyword": { - "ignore_above": 256, - "type": "keyword" - } - }, - "type": "text" - } - } - }, - "ml-telemetry": { - "properties": { - "file_data_visualizer": { - "properties": { - "index_creation_count": { - "type": "long" - } - } - } - } - }, - "namespace": { - "type": "keyword" - }, - "namespaces": { - "type": "keyword" - }, - "outputs": { - "properties": { - "api_key": { - "type": "keyword" - }, - "ca_sha256": { - "type": "keyword" - }, - "config": { - "type": "flattened" - }, - "fleet_enroll_password": { - "type": "binary" - }, - "fleet_enroll_username": { - "type": "binary" - }, - "hosts": { - "type": "keyword" - }, - "is_default": { - "type": "boolean" - }, - "name": { - "type": "keyword" - }, - "type": { - "type": "keyword" - } - } - }, - "query": { - "properties": { - "description": { - "type": "text" - }, - "filters": { - "enabled": false, - "type": "object" - }, - "query": { - "properties": { - "language": { - "type": "keyword" - }, - "query": { - "index": false, - "type": "keyword" - } - } - }, - "timefilter": { - "enabled": false, - "type": "object" - }, - "title": { - "type": "text" - } - } - }, - "references": { - "properties": { - "id": { - "type": "keyword" - }, - "name": { - "type": "keyword" - }, - "type": { - "type": "keyword" - } - }, - "type": "nested" - }, - "sample-data-telemetry": { - "properties": { - "installCount": { - "type": "long" - }, - "unInstallCount": { - "type": "long" - } - } - }, - "search": { - "properties": { - "columns": { - "type": "keyword" - }, - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "sort": { - "type": "keyword" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, - "server": { - "properties": { - "uuid": { - "type": "keyword" - } - } - }, - "siem-detection-engine-rule-actions": { - "properties": { - "actions": { - "properties": { - "action_type_id": { - "type": "keyword" - }, - "group": { - "type": "keyword" - }, - "id": { - "type": "keyword" - }, - "params": { - "dynamic": "true", - "type": "object" - } - } - }, - "alertThrottle": { - "type": "keyword" - }, - "ruleAlertId": { - "type": "keyword" - }, - "ruleThrottle": { - "type": "keyword" - } - } - }, - "siem-detection-engine-rule-status": { - "properties": { - "alertId": { - "type": "keyword" - }, - "bulkCreateTimeDurations": { - "type": "float" - }, - "gap": { - "type": "text" - }, - "lastFailureAt": { - "type": "date" - }, - "lastFailureMessage": { - "type": "text" - }, - "lastLookBackDate": { - "type": "date" - }, - "lastSuccessAt": { - "type": "date" - }, - "lastSuccessMessage": { - "type": "text" - }, - "searchAfterTimeDurations": { - "type": "float" - }, - "status": { - "type": "keyword" - }, - "statusDate": { - "type": "date" - } - } - }, - "siem-ui-timeline": { - "properties": { - "columns": { - "properties": { - "aggregatable": { - "type": "boolean" - }, - "category": { - "type": "keyword" - }, - "columnHeaderType": { - "type": "keyword" - }, - "description": { - "type": "text" - }, - "example": { - "type": "text" - }, - "id": { - "type": "keyword" - }, - "indexes": { - "type": "keyword" - }, - "name": { - "type": "text" - }, - "placeholder": { - "type": "text" - }, - "searchable": { - "type": "boolean" - }, - "type": { - "type": "keyword" - } - } - }, - "created": { - "type": "date" - }, - "createdBy": { - "type": "text" - }, - "dataProviders": { - "properties": { - "and": { - "properties": { - "enabled": { - "type": "boolean" - }, - "excluded": { - "type": "boolean" - }, - "id": { - "type": "keyword" - }, - "kqlQuery": { - "type": "text" - }, - "name": { - "type": "text" - }, - "queryMatch": { - "properties": { - "displayField": { - "type": "text" - }, - "displayValue": { - "type": "text" - }, - "field": { - "type": "text" - }, - "operator": { - "type": "text" - }, - "value": { - "type": "text" - } - } - } - } - }, - "enabled": { - "type": "boolean" - }, - "excluded": { - "type": "boolean" - }, - "id": { - "type": "keyword" - }, - "kqlQuery": { - "type": "text" - }, - "name": { - "type": "text" - }, - "queryMatch": { - "properties": { - "displayField": { - "type": "text" - }, - "displayValue": { - "type": "text" - }, - "field": { - "type": "text" - }, - "operator": { - "type": "text" - }, - "value": { - "type": "text" - } - } - } - } - }, - "dateRange": { - "properties": { - "end": { - "type": "date" - }, - "start": { - "type": "date" - } - } - }, - "description": { - "type": "text" - }, - "eventType": { - "type": "keyword" - }, - "favorite": { - "properties": { - "favoriteDate": { - "type": "date" - }, - "fullName": { - "type": "text" - }, - "keySearch": { - "type": "text" - }, - "userName": { - "type": "text" - } - } - }, - "filters": { - "properties": { - "exists": { - "type": "text" - }, - "match_all": { - "type": "text" - }, - "meta": { - "properties": { - "alias": { - "type": "text" - }, - "controlledBy": { - "type": "text" - }, - "disabled": { - "type": "boolean" - }, - "field": { - "type": "text" - }, - "formattedValue": { - "type": "text" - }, - "index": { - "type": "keyword" - }, - "key": { - "type": "keyword" - }, - "negate": { - "type": "boolean" - }, - "params": { - "type": "text" - }, - "type": { - "type": "keyword" - }, - "value": { - "type": "text" - } - } - }, - "missing": { - "type": "text" - }, - "query": { - "type": "text" - }, - "range": { - "type": "text" - }, - "script": { - "type": "text" - } - } - }, - "kqlMode": { - "type": "keyword" - }, - "kqlQuery": { - "properties": { - "filterQuery": { - "properties": { - "kuery": { - "properties": { - "expression": { - "type": "text" - }, - "kind": { - "type": "keyword" - } - } - }, - "serializedQuery": { - "type": "text" - } - } - } - } - }, - "savedQueryId": { - "type": "keyword" - }, - "sort": { - "properties": { - "columnId": { - "type": "keyword" - }, - "sortDirection": { - "type": "keyword" - } - } - }, - "title": { - "type": "text" - }, - "updated": { - "type": "date" - }, - "updatedBy": { - "type": "text" - } - } - }, - "siem-ui-timeline-note": { - "properties": { - "created": { - "type": "date" - }, - "createdBy": { - "type": "text" - }, - "eventId": { - "type": "keyword" - }, - "note": { - "type": "text" - }, - "timelineId": { - "type": "keyword" - }, - "updated": { - "type": "date" - }, - "updatedBy": { - "type": "text" - } - } - }, - "siem-ui-timeline-pinned-event": { - "properties": { - "created": { - "type": "date" - }, - "createdBy": { - "type": "text" - }, - "eventId": { - "type": "keyword" - }, - "timelineId": { - "type": "keyword" - }, - "updated": { - "type": "date" - }, - "updatedBy": { - "type": "text" - } - } - }, - "space": { - "properties": { - "_reserved": { - "type": "boolean" - }, - "color": { - "type": "keyword" - }, - "description": { - "type": "text" - }, - "disabledFeatures": { - "type": "keyword" - }, - "imageUrl": { - "index": false, - "type": "text" - }, - "initials": { - "type": "keyword" - }, - "name": { - "fields": { - "keyword": { - "ignore_above": 2048, - "type": "keyword" - } - }, - "type": "text" - } - } - }, - "telemetry": { - "properties": { - "allowChangingOptInStatus": { - "type": "boolean" - }, - "enabled": { - "type": "boolean" - }, - "lastReported": { - "type": "date" - }, - "lastVersionChecked": { - "type": "keyword" - }, - "reportFailureCount": { - "type": "integer" - }, - "reportFailureVersion": { - "type": "keyword" - }, - "sendUsageFrom": { - "type": "keyword" - }, - "userHasSeenNotice": { - "type": "boolean" - } - } - }, - "timelion-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timelion_chart_height": { - "type": "integer" - }, - "timelion_columns": { - "type": "integer" - }, - "timelion_interval": { - "type": "keyword" - }, - "timelion_other_interval": { - "type": "keyword" - }, - "timelion_rows": { - "type": "integer" - }, - "timelion_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, - "tsvb-validation-telemetry": { - "properties": { - "failedRequests": { - "type": "long" - } - } - }, - "type": { - "type": "keyword" - }, - "ui-metric": { - "properties": { - "count": { - "type": "integer" - } - } - }, - "updated_at": { - "type": "date" - }, - "upgrade-assistant-reindex-operation": { - "dynamic": "true", - "properties": { - "indexName": { - "type": "keyword" - }, - "status": { - "type": "integer" - } - } - }, - "upgrade-assistant-telemetry": { - "properties": { - "features": { - "properties": { - "deprecation_logging": { - "properties": { - "enabled": { - "null_value": true, - "type": "boolean" - } - } - } - } - }, - "ui_open": { - "properties": { - "cluster": { - "null_value": 0, - "type": "long" - }, - "indices": { - "null_value": 0, - "type": "long" - }, - "overview": { - "null_value": 0, - "type": "long" - } - } - }, - "ui_reindex": { - "properties": { - "close": { - "null_value": 0, - "type": "long" - }, - "open": { - "null_value": 0, - "type": "long" - }, - "start": { - "null_value": 0, - "type": "long" - }, - "stop": { - "null_value": 0, - "type": "long" - } - } - } - } - }, - "uptime-dynamic-settings": { - "properties": { - "certificatesThresholds": { - "properties": { - "errorState": { - "type": "long" - }, - "warningState": { - "type": "long" - } - } - }, - "heartbeatIndices": { - "type": "keyword" - } - } - }, - "url": { - "properties": { - "accessCount": { - "type": "long" - }, - "accessDate": { - "type": "date" - }, - "createDate": { - "type": "date" - }, - "url": { - "fields": { - "keyword": { - "ignore_above": 2048, - "type": "keyword" - } - }, - "type": "text" - } - } - }, - "visualization": { - "properties": { - "description": { - "type": "text" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "savedSearchRefName": { - "type": "keyword" - }, - "title": { - "type": "text" - }, - "uiStateJSON": { - "type": "text" - }, - "version": { - "type": "integer" - }, - "visState": { - "type": "text" - } - } - } - } - }, - "settings": { - "index": { - "auto_expand_replicas": "0-1", - "number_of_replicas": "0", - "number_of_shards": "1" - } - } - } -} \ No newline at end of file